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

Side by Side Diff: chrome/browser/pref_service_flags_storage.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_ 5 #ifndef CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_
6 #define CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_ 6 #define CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/browser/flags_storage.h" 9 #include "chrome/browser/flags_storage.h"
10 10
11 class PrefService; 11 class PrefService;
12 12
13 namespace about_flags { 13 namespace about_flags {
14 14
15 // Implements the FlagsStorage interface with a PrefService backend. 15 // Implements the FlagsStorage interface with a PrefService backend.
16 // This is the implementation used on desktop Chrome for all users. 16 // This is the implementation used on desktop Chrome for all users.
17 class PrefServiceFlagsStorage : public FlagsStorage { 17 class PrefServiceFlagsStorage : public FlagsStorage {
18 public: 18 public:
19 explicit PrefServiceFlagsStorage(PrefService *prefs); 19 explicit PrefServiceFlagsStorage(PrefService *prefs);
20 virtual ~PrefServiceFlagsStorage(); 20 virtual ~PrefServiceFlagsStorage();
21 21
22 virtual std::set<std::string> GetFlags() OVERRIDE; 22 virtual std::set<std::string> GetFlags() override;
23 virtual bool SetFlags(const std::set<std::string>& flags) OVERRIDE; 23 virtual bool SetFlags(const std::set<std::string>& flags) override;
24 24
25 private: 25 private:
26 PrefService* prefs_; 26 PrefService* prefs_;
27 }; 27 };
28 28
29 } // namespace about_flags 29 } // namespace about_flags
30 30
31 #endif // CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_ 31 #endif // CHROME_BROWSER_PREF_SERVICE_FLAGS_STORAGE_H_
OLDNEW
« no previous file with comments | « chrome/browser/predictors/resource_prefetcher_unittest.cc ('k') | chrome/browser/prefetch/prefetch_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698