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

Unified Diff: chrome/browser/geolocation/chrome_access_token_store.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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 | « chrome/browser/font_family_cache_unittest.cc ('k') | chrome/browser/geolocation/geolocation_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/geolocation/chrome_access_token_store.h
diff --git a/chrome/browser/geolocation/chrome_access_token_store.h b/chrome/browser/geolocation/chrome_access_token_store.h
index 96211e3736cf46a57775251d680aec338f1365c7..92d0791eda36b6beefa50d73070c33b852338295 100644
--- a/chrome/browser/geolocation/chrome_access_token_store.h
+++ b/chrome/browser/geolocation/chrome_access_token_store.h
@@ -17,15 +17,14 @@ class ChromeAccessTokenStore : public content::AccessTokenStore {
ChromeAccessTokenStore();
- virtual void LoadAccessTokens(
- const LoadAccessTokensCallbackType& request) override;
+ void LoadAccessTokens(const LoadAccessTokensCallbackType& request) override;
private:
- virtual ~ChromeAccessTokenStore();
+ ~ChromeAccessTokenStore() override;
// AccessTokenStore
- 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;
DISALLOW_COPY_AND_ASSIGN(ChromeAccessTokenStore);
};
« no previous file with comments | « chrome/browser/font_family_cache_unittest.cc ('k') | chrome/browser/geolocation/geolocation_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698