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

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

Issue 165223003: Add a Restore() method to ValueStore and make StorageAPI use it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 6 years, 10 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
Index: chrome/browser/extensions/test_extension_system.h
diff --git a/chrome/browser/extensions/test_extension_system.h b/chrome/browser/extensions/test_extension_system.h
index ea9be6c1a8306c487578e40b3311bd07c2c8088d..95c9a1f7a3467ea023c19fc352d44e5a1d816325 100644
--- a/chrome/browser/extensions/test_extension_system.h
+++ b/chrome/browser/extensions/test_extension_system.h
@@ -69,6 +69,7 @@ class TestExtensionSystem : public ExtensionSystem {
TestingValueStore* value_store() { return value_store_; }
virtual InfoMap* info_map() OVERRIDE;
virtual LazyBackgroundTaskQueue* lazy_background_task_queue() OVERRIDE;
+ void SetEventRouter(scoped_ptr<EventRouter> event_router);
virtual EventRouter* event_router() OVERRIDE;
virtual ExtensionWarningService* warning_service() OVERRIDE;
virtual Blacklist* blacklist() OVERRIDE;
@@ -100,6 +101,7 @@ class TestExtensionSystem : public ExtensionSystem {
scoped_ptr<ExtensionService> extension_service_;
scoped_ptr<ProcessManager> process_manager_;
scoped_refptr<InfoMap> info_map_;
+ scoped_ptr<EventRouter> event_router_;
scoped_ptr<ErrorConsole> error_console_;
scoped_ptr<InstallVerifier> install_verifier_;
scoped_ptr<QuotaService> quota_service_;

Powered by Google App Engine
This is Rietveld 408576698