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

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

Issue 559603002: Add new ExtensionManagement preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes addressing #16 Created 6 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_management.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 friend struct DefaultSingletonTraits<ExtensionManagementFactory>; 186 friend struct DefaultSingletonTraits<ExtensionManagementFactory>;
187 187
188 ExtensionManagementFactory(); 188 ExtensionManagementFactory();
189 virtual ~ExtensionManagementFactory(); 189 virtual ~ExtensionManagementFactory();
190 190
191 // BrowserContextKeyedServiceExtensionManagementFactory: 191 // BrowserContextKeyedServiceExtensionManagementFactory:
192 virtual KeyedService* BuildServiceInstanceFor( 192 virtual KeyedService* BuildServiceInstanceFor(
193 content::BrowserContext* context) const OVERRIDE; 193 content::BrowserContext* context) const OVERRIDE;
194 virtual content::BrowserContext* GetBrowserContextToUse( 194 virtual content::BrowserContext* GetBrowserContextToUse(
195 content::BrowserContext* context) const OVERRIDE; 195 content::BrowserContext* context) const OVERRIDE;
196 virtual void RegisterProfilePrefs(
197 user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
196 198
197 DISALLOW_COPY_AND_ASSIGN(ExtensionManagementFactory); 199 DISALLOW_COPY_AND_ASSIGN(ExtensionManagementFactory);
198 }; 200 };
199 201
200 } // namespace extensions 202 } // namespace extensions
201 203
202 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_ 204 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_management.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698