diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 03:02:08 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 03:02:08 +0000 |
commit | b94584a231b160d2570cc38e78457fb852eb0c41 (patch) | |
tree | 8d03a214b0f7305c38eb8e2b6852015ae38fef07 /chrome/browser/search_engines/template_url_fetcher.cc | |
parent | 8bc6596e0bdb39d1450d595bcc62244a5f3190b9 (diff) | |
download | chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.zip chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.gz chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.bz2 |
Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition.
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
Review URL: https://codereview.chromium.org/12212048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/search_engines/template_url_fetcher.cc')
-rw-r--r-- | chrome/browser/search_engines/template_url_fetcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/search_engines/template_url_fetcher.cc b/chrome/browser/search_engines/template_url_fetcher.cc index 63ae8cc..ce73e21 100644 --- a/chrome/browser/search_engines/template_url_fetcher.cc +++ b/chrome/browser/search_engines/template_url_fetcher.cc @@ -44,12 +44,12 @@ class TemplateURLFetcher::RequestDelegate // content::NotificationObserver: virtual void Observe(int type, const content::NotificationSource& source, - const content::NotificationDetails& details); + const content::NotificationDetails& details) OVERRIDE; // net::URLFetcherDelegate: // If data contains a valid OSDD, a TemplateURL is created and added to // the TemplateURLService. - virtual void OnURLFetchComplete(const net::URLFetcher* source); + virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; // URL of the OSDD. GURL url() const { return osdd_url_; } |