Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1146)

Unified Diff: extensions/browser/updater/extension_downloader.h

Issue 664933004: Standardize usage of virtual/override/final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/test_runtime_api_delegate.h ('k') | extensions/browser/updater/null_extension_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/updater/extension_downloader.h
diff --git a/extensions/browser/updater/extension_downloader.h b/extensions/browser/updater/extension_downloader.h
index 6c0462c0aa03823d9d765fd0cd58a0e58c04a49c..d987a0592d11ee8fdf26fa25acb5d7cbc2029046 100644
--- a/extensions/browser/updater/extension_downloader.h
+++ b/extensions/browser/updater/extension_downloader.h
@@ -64,7 +64,7 @@ class ExtensionDownloader : public net::URLFetcherDelegate,
// ExtensionDownloader.
ExtensionDownloader(ExtensionDownloaderDelegate* delegate,
net::URLRequestContextGetter* request_context);
- virtual ~ExtensionDownloader();
+ ~ExtensionDownloader() override;
// Adds |extension| to the list of extensions to check for updates.
// Returns false if the |extension| can't be updated due to invalid details.
@@ -196,7 +196,7 @@ class ExtensionDownloader : public net::URLFetcherDelegate,
void CreateManifestFetcher();
// net::URLFetcherDelegate implementation.
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
// Handles the result of a manifest fetch.
void OnManifestFetchComplete(const GURL& url,
@@ -256,11 +256,11 @@ class ExtensionDownloader : public net::URLFetcherDelegate,
int response_code);
// OAuth2TokenService::Consumer implementation.
- virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
- const std::string& access_token,
- const base::Time& expiration_time) override;
- virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
- const GoogleServiceAuthError& error) override;
+ void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
+ const std::string& access_token,
+ const base::Time& expiration_time) override;
+ void OnGetTokenFailure(const OAuth2TokenService::Request* request,
+ const GoogleServiceAuthError& error) override;
ManifestFetchData* CreateManifestFetchData(const GURL& update_url,
int request_id);
« no previous file with comments | « extensions/browser/test_runtime_api_delegate.h ('k') | extensions/browser/updater/null_extension_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698