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

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

Issue 10826156: Plumb invalidations from Tango to the extensions code for the Push Messaging API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix gmock and maybe Android build Created 8 years, 4 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/extension_system.cc
diff --git a/chrome/browser/extensions/extension_system.cc b/chrome/browser/extensions/extension_system.cc
index 8b8756ccec5a2a5c91dc25be9b6c660d17571a91..5d327e0180ac771704f0a7aa9860eff0acc2cd6c 100644
--- a/chrome/browser/extensions/extension_system.cc
+++ b/chrome/browser/extensions/extension_system.cc
@@ -196,6 +196,11 @@ void ExtensionSystemImpl::Shared::Init(bool extensions_enabled) {
}
}
+void ExtensionSystemImpl::Shared::Shutdown() {
+ if (extension_service_.get())
+ extension_service_->Shutdown();
+}
+
StateStore* ExtensionSystemImpl::Shared::state_store() {
return state_store_.get();
}

Powered by Google App Engine
This is Rietveld 408576698