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

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

Issue 5213002: Fix for Bug 50726 "Save extension list and "winning" prefs from extensions" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: reuse old DefaultPrefStore as InMemoryPrefStore Created 10 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_EXTENSIONS_SERVICE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 static bool IsDownloadFromMiniGallery(const GURL& download_url); 143 static bool IsDownloadFromMiniGallery(const GURL& download_url);
144 144
145 // Attempts to uninstall an extension from a given ExtensionService. Returns 145 // Attempts to uninstall an extension from a given ExtensionService. Returns
146 // true iff the target extension exists. 146 // true iff the target extension exists.
147 static bool UninstallExtensionHelper(ExtensionsService* extensions_service, 147 static bool UninstallExtensionHelper(ExtensionsService* extensions_service,
148 const std::string& extension_id); 148 const std::string& extension_id);
149 149
150 ExtensionsService(Profile* profile, 150 ExtensionsService(Profile* profile,
151 const CommandLine* command_line, 151 const CommandLine* command_line,
152 const FilePath& install_directory, 152 const FilePath& install_directory,
153 ExtensionPrefs* extension_prefs,
153 bool autoupdate_enabled); 154 bool autoupdate_enabled);
154 155
155 // Gets the list of currently installed extensions. 156 // Gets the list of currently installed extensions.
156 virtual const ExtensionList* extensions() const { return &extensions_; } 157 virtual const ExtensionList* extensions() const { return &extensions_; }
157 virtual const ExtensionList* disabled_extensions() const { 158 virtual const ExtensionList* disabled_extensions() const {
158 return &disabled_extensions_; 159 return &disabled_extensions_;
159 } 160 }
160 161
161 // Gets the set of pending extensions. 162 // Gets the set of pending extensions.
162 virtual const PendingExtensionMap& pending_extensions() const { 163 virtual const PendingExtensionMap& pending_extensions() const {
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, 571 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest,
571 UpdatePendingExtensionAlreadyInstalled); 572 UpdatePendingExtensionAlreadyInstalled);
572 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, 573 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest,
573 InstallAppsWithUnlimtedStorage); 574 InstallAppsWithUnlimtedStorage);
574 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, 575 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest,
575 InstallAppsAndCheckStorageProtection); 576 InstallAppsAndCheckStorageProtection);
576 DISALLOW_COPY_AND_ASSIGN(ExtensionsService); 577 DISALLOW_COPY_AND_ASSIGN(ExtensionsService);
577 }; 578 };
578 579
579 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ 580 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698