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

Unified Diff: chrome/browser/extensions/extension_service.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_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 6425c251fc1699da0aa5feab1ac590a19d973280..f09b05e5ddd7f3b6b22cd692e6884a62bb25f29a 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -523,6 +523,10 @@ void ExtensionService::InitEventRouters() {
event_routers_initialized_ = true;
}
+void ExtensionService::Shutdown() {
+ push_messaging_event_router_->Shutdown();
+}
+
const Extension* ExtensionService::GetExtensionById(
const std::string& id, bool include_disabled) const {
return GetExtensionByIdInternal(id, true, include_disabled, false);

Powered by Google App Engine
This is Rietveld 408576698