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

Unified Diff: chrome/browser/pref_service_flags_storage.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
Index: chrome/browser/pref_service_flags_storage.h
diff --git a/chrome/browser/pref_service_flags_storage.h b/chrome/browser/pref_service_flags_storage.h
index 06dfaefc8631c9159ea6d7b3f5911f641c379292..ac41448e130a855dd9d31dafdc75ee96444e5b58 100644
--- a/chrome/browser/pref_service_flags_storage.h
+++ b/chrome/browser/pref_service_flags_storage.h
@@ -17,10 +17,10 @@ namespace about_flags {
class PrefServiceFlagsStorage : public FlagsStorage {
public:
explicit PrefServiceFlagsStorage(PrefService *prefs);
- virtual ~PrefServiceFlagsStorage();
+ ~PrefServiceFlagsStorage() override;
- virtual std::set<std::string> GetFlags() override;
- virtual bool SetFlags(const std::set<std::string>& flags) override;
+ std::set<std::string> GetFlags() override;
+ bool SetFlags(const std::set<std::string>& flags) override;
private:
PrefService* prefs_;
« no previous file with comments | « chrome/browser/predictors/resource_prefetcher_manager.h ('k') | chrome/browser/prefetch/prefetch_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698