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

Unified Diff: apps/shell/browser/shell_extension_system.cc

Issue 317993003: Send an onInstalled event for shared module update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 6 years, 6 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: apps/shell/browser/shell_extension_system.cc
diff --git a/apps/shell/browser/shell_extension_system.cc b/apps/shell/browser/shell_extension_system.cc
index 7d56884fcf6bc3e02b7a49a93d104952acbc857e..2aefddfbbf3f4c91e1a7f531ea0f490528da0ca8 100644
--- a/apps/shell/browser/shell_extension_system.cc
+++ b/apps/shell/browser/shell_extension_system.cc
@@ -180,4 +180,10 @@ ContentVerifier* ShellExtensionSystem::content_verifier() {
return NULL;
}
+scoped_ptr<const ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
+ const Extension* extension) {
+ scoped_ptr<ExtensionSet> empty(new ExtensionSet());
+ return empty.PassAs<const ExtensionSet>();
+}
+
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698