| 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();
|
|
|