summaryrefslogtreecommitdiffstats
path: root/components/search_provider_logos/logo_cache_unittest.cc
Commit message (Collapse)AuthorAgeFilesLines
* Add animated url to LogoTracker.justincohen2015-04-031-0/+2
| | | | | | | | BUG=414528 Review URL: https://codereview.chromium.org/1054123002 Cr-Commit-Position: refs/heads/master@{#323754}
* Standardize usage of virtual/override/final specifiers.dcheng2014-10-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=caitkp@chromium.org Review URL: https://codereview.chromium.org/684513002 Cr-Commit-Position: refs/heads/master@{#301931}
* replace OVERRIDE and FINAL with override and final in components/mostynb2014-10-061-1/+1
| | | | | | | | BUG=417463 Review URL: https://codereview.chromium.org/623133002 Cr-Commit-Position: refs/heads/master@{#298237}
* Change base/file_utils.h includes to base/files/file_utils.h in chrome_elf/ ↵thestig2014-09-101-1/+1
| | | | | | | | | | and components/ Also fix the formatting of chrome_elf/OWNERS Review URL: https://codereview.chromium.org/546733002 Cr-Commit-Position: refs/heads/master@{#294245}
* Remove implicit conversions from scoped_refptr to T* in ↵dcheng2014-08-271-2/+2
| | | | | | | | | | | | | components/search_provider_logos/ This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/497723004 Cr-Commit-Position: refs/heads/master@{#292232}
* Add LogoTracker to fetch search providers' logos.newt@chromium.org2014-04-301-0/+252
| | | | | | | | | | | | | | | | | The LogoTracker keeps track of the logo for a search provider. The logo is downloaded, cached on disk, and periodically revalidated. This code lives inside a component (search_provider_logos) so it can be used on both Android and iOS. BUG=178922 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=267314 Review URL: https://codereview.chromium.org/162373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267349 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 267314 "Add LogoTracker to fetch search providers' logos."jsbell@chromium.org2014-04-301-252/+0
| | | | | | | | | | | | | | | | | | | | | > Add LogoTracker to fetch search providers' logos. > > The LogoTracker keeps track of the logo for a search provider. The logo > is downloaded, cached on disk, and periodically revalidated. > > This code lives inside a component (search_provider_logos) so it can be > used on both Android and iOS. > > BUG=178922 > NOTRY=true > > Review URL: https://codereview.chromium.org/162373002 TBR=newt@chromium.org Review URL: https://codereview.chromium.org/257363005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267319 0039d316-1c4b-4281-b951-d872f2087c98
* Add LogoTracker to fetch search providers' logos.newt@chromium.org2014-04-301-0/+252
The LogoTracker keeps track of the logo for a search provider. The logo is downloaded, cached on disk, and periodically revalidated. This code lives inside a component (search_provider_logos) so it can be used on both Android and iOS. BUG=178922 NOTRY=true Review URL: https://codereview.chromium.org/162373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267314 0039d316-1c4b-4281-b951-d872f2087c98