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

Unified Diff: content/shell/geolocation/shell_access_token_store.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 | « content/shell/common/shell_content_client.h ('k') | content/shell/renderer/ipc_echo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/geolocation/shell_access_token_store.h
diff --git a/content/shell/geolocation/shell_access_token_store.h b/content/shell/geolocation/shell_access_token_store.h
index 8fbb25367898d4216b6880842ee288b938b7f326..df461465254d068a112292295a78576495100855 100644
--- a/content/shell/geolocation/shell_access_token_store.h
+++ b/content/shell/geolocation/shell_access_token_store.h
@@ -19,18 +19,17 @@ class ShellAccessTokenStore : public content::AccessTokenStore {
content::ShellBrowserContext* shell_browser_context);
private:
- virtual ~ShellAccessTokenStore();
+ ~ShellAccessTokenStore() override;
void GetRequestContextOnUIThread(
content::ShellBrowserContext* shell_browser_context);
void RespondOnOriginatingThread(const LoadAccessTokensCallbackType& callback);
// AccessTokenStore
- virtual void LoadAccessTokens(
- const LoadAccessTokensCallbackType& callback) override;
+ void LoadAccessTokens(const LoadAccessTokensCallbackType& callback) override;
- virtual void SaveAccessToken(
- const GURL& server_url, const base::string16& access_token) override;
+ void SaveAccessToken(const GURL& server_url,
+ const base::string16& access_token) override;
content::ShellBrowserContext* shell_browser_context_;
scoped_refptr<net::URLRequestContextGetter> system_request_context_;
« no previous file with comments | « content/shell/common/shell_content_client.h ('k') | content/shell/renderer/ipc_echo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698