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

Side by Side Diff: chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.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_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_ 5 #ifndef CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_
6 #define CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_ 6 #define CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/chrome_browser_main_extra_parts.h" 10 #include "chrome/browser/chrome_browser_main_extra_parts.h"
11 11
12 class ChromeBrowserMainParts; 12 class ChromeBrowserMainParts;
13 13
14 namespace chrome { 14 namespace chrome {
15 void AddProfilesExtraParts(ChromeBrowserMainParts* main_parts); 15 void AddProfilesExtraParts(ChromeBrowserMainParts* main_parts);
16 } 16 }
17 17
18 class ChromeBrowserMainExtraPartsProfiles : public ChromeBrowserMainExtraParts { 18 class ChromeBrowserMainExtraPartsProfiles : public ChromeBrowserMainExtraParts {
19 public: 19 public:
20 ChromeBrowserMainExtraPartsProfiles(); 20 ChromeBrowserMainExtraPartsProfiles();
21 virtual ~ChromeBrowserMainExtraPartsProfiles(); 21 virtual ~ChromeBrowserMainExtraPartsProfiles();
22 22
23 // Instantiates all chrome KeyedService factories, which is 23 // Instantiates all chrome KeyedService factories, which is
24 // especially important for services that should be created at profile 24 // especially important for services that should be created at profile
25 // creation time as compared to lazily on first access. 25 // creation time as compared to lazily on first access.
26 static void EnsureBrowserContextKeyedServiceFactoriesBuilt(); 26 static void EnsureBrowserContextKeyedServiceFactoriesBuilt();
27 27
28 // Overridden from ChromeBrowserMainExtraParts: 28 // Overridden from ChromeBrowserMainExtraParts:
29 virtual void PreProfileInit() OVERRIDE; 29 virtual void PreProfileInit() override;
30 30
31 private: 31 private:
32 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsProfiles); 32 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsProfiles);
33 }; 33 };
34 34
35 #endif // CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_ 35 #endif // CHROME_BROWSER_PROFILES_CHROME_BROWSER_MAIN_EXTRA_PARTS_PROFILES_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/bookmark_model_loaded_observer.h ('k') | chrome/browser/profiles/gaia_info_update_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698