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

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: Make pushMessaging non-optional 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 55e31a31b3683ea0b6043fdf864837934d12d320..1ccc438c6f64b4b5da2d4042674032ff5980b712 100644
--- a/chrome/browser/extensions/extension_system.cc
+++ b/chrome/browser/extensions/extension_system.cc
@@ -190,6 +190,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