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

Unified Diff: extensions/common/common_manifest_handlers.cc

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Address comments Created 3 years, 11 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: extensions/common/common_manifest_handlers.cc
diff --git a/extensions/common/common_manifest_handlers.cc b/extensions/common/common_manifest_handlers.cc
index 95293215947b248282790b67c3595f6dc9db91c9..a40be154d5eee0e2a32f6ddace58f7aca14c2dac 100644
--- a/extensions/common/common_manifest_handlers.cc
+++ b/extensions/common/common_manifest_handlers.cc
@@ -28,10 +28,17 @@
#include "extensions/common/manifest_handlers/web_accessible_resources_info.h"
#include "extensions/common/manifest_handlers/webview_info.h"
+#if defined(OS_CHROMEOS)
+#include "extensions/common/manifest_handlers/action_handlers_handler.h"
+#endif
+
namespace extensions {
void RegisterCommonManifestHandlers() {
DCHECK(!ManifestHandler::IsRegistrationFinalized());
+#if defined(OS_CHROMEOS)
+ (new ActionHandlersHandler)->Register();
+#endif
(new BackgroundManifestHandler)->Register();
(new BluetoothManifestHandler)->Register();
(new ContentCapabilitiesHandler)->Register();

Powered by Google App Engine
This is Rietveld 408576698