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

Unified Diff: chrome/browser/extensions/extension_system.h

Issue 14636012: Move ShellWindowGeometryCache into apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « apps/shell_window_geometry_cache_unittest.cc ('k') | chrome/browser/extensions/extension_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_system.h
diff --git a/chrome/browser/extensions/extension_system.h b/chrome/browser/extensions/extension_system.h
index f7da8b9782d42945e1e913d0f0c370d86db10445..331570e8543dbe8d04299fa68a0e68105312fdfb 100644
--- a/chrome/browser/extensions/extension_system.h
+++ b/chrome/browser/extensions/extension_system.h
@@ -36,7 +36,6 @@ class ManagementPolicy;
class MessageService;
class NavigationObserver;
class RulesRegistryService;
-class ShellWindowGeometryCache;
class StandardManagementPolicyProvider;
class StateStore;
class UserScriptMaster;
@@ -85,9 +84,6 @@ class ExtensionSystem : public ProfileKeyedService {
// The rules store is created at startup.
virtual StateStore* rules_store() = 0;
- // The ShellWindowGeometryCache is created at startup.
- virtual ShellWindowGeometryCache* shell_window_geometry_cache() = 0;
-
// Returns the IO-thread-accessible extension data.
virtual ExtensionInfoMap* info_map() = 0;
@@ -156,8 +152,6 @@ class ExtensionSystemImpl : public ExtensionSystem {
virtual ExtensionProcessManager* process_manager() OVERRIDE;
virtual StateStore* state_store() OVERRIDE; // shared
virtual StateStore* rules_store() OVERRIDE; // shared
- virtual ShellWindowGeometryCache* shell_window_geometry_cache()
- OVERRIDE; // shared
virtual LazyBackgroundTaskQueue* lazy_background_task_queue()
OVERRIDE; // shared
virtual ExtensionInfoMap* info_map() OVERRIDE; // shared
@@ -200,7 +194,6 @@ class ExtensionSystemImpl : public ExtensionSystem {
StateStore* state_store();
StateStore* rules_store();
- ShellWindowGeometryCache* shell_window_geometry_cache();
ExtensionService* extension_service();
ManagementPolicy* management_policy();
UserScriptMaster* user_script_master();
@@ -217,7 +210,6 @@ class ExtensionSystemImpl : public ExtensionSystem {
scoped_ptr<StateStore> state_store_;
scoped_ptr<StateStore> rules_store_;
- scoped_ptr<ShellWindowGeometryCache> shell_window_geometry_cache_;
// LazyBackgroundTaskQueue is a dependency of
// MessageService and EventRouter.
scoped_ptr<LazyBackgroundTaskQueue> lazy_background_task_queue_;
« no previous file with comments | « apps/shell_window_geometry_cache_unittest.cc ('k') | chrome/browser/extensions/extension_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698