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

Side by Side Diff: chrome/browser/extensions/extension_management.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_EXTENSIONS_EXTENSION_MANAGEMENT_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_
7 7
8 #include "base/containers/scoped_ptr_hash_map.h" 8 #include "base/containers/scoped_ptr_hash_map.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 static ExtensionManagementFactory* GetInstance(); 161 static ExtensionManagementFactory* GetInstance();
162 162
163 private: 163 private:
164 friend struct DefaultSingletonTraits<ExtensionManagementFactory>; 164 friend struct DefaultSingletonTraits<ExtensionManagementFactory>;
165 165
166 ExtensionManagementFactory(); 166 ExtensionManagementFactory();
167 virtual ~ExtensionManagementFactory(); 167 virtual ~ExtensionManagementFactory();
168 168
169 // BrowserContextKeyedServiceExtensionManagementFactory: 169 // BrowserContextKeyedServiceExtensionManagementFactory:
170 virtual KeyedService* BuildServiceInstanceFor( 170 virtual KeyedService* BuildServiceInstanceFor(
171 content::BrowserContext* context) const OVERRIDE; 171 content::BrowserContext* context) const override;
172 virtual content::BrowserContext* GetBrowserContextToUse( 172 virtual content::BrowserContext* GetBrowserContextToUse(
173 content::BrowserContext* context) const OVERRIDE; 173 content::BrowserContext* context) const override;
174 virtual void RegisterProfilePrefs( 174 virtual void RegisterProfilePrefs(
175 user_prefs::PrefRegistrySyncable* registry) OVERRIDE; 175 user_prefs::PrefRegistrySyncable* registry) override;
176 176
177 DISALLOW_COPY_AND_ASSIGN(ExtensionManagementFactory); 177 DISALLOW_COPY_AND_ASSIGN(ExtensionManagementFactory);
178 }; 178 };
179 179
180 } // namespace extensions 180 } // namespace extensions
181 181
182 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ 182 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_keybinding_registry.h ('k') | chrome/browser/extensions/extension_management_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698