| Index: extensions/common/common_manifest_handlers.cc
|
| diff --git a/extensions/common/common_manifest_handlers.cc b/extensions/common/common_manifest_handlers.cc
|
| index 1ce16373c5ee67246a00eaab203906082faa2e68..7604ad42b096290530dad7d685269cb9ce980b55 100644
|
| --- a/extensions/common/common_manifest_handlers.cc
|
| +++ b/extensions/common/common_manifest_handlers.cc
|
| @@ -7,6 +7,7 @@
|
| #include "extensions/common/manifest_handler.h"
|
| #include "extensions/common/manifest_handlers/background_info.h"
|
| #include "extensions/common/manifest_handlers/csp_info.h"
|
| +#include "extensions/common/manifest_handlers/externally_connectable.h"
|
| #include "extensions/common/manifest_handlers/file_handler_info.h"
|
| #include "extensions/common/manifest_handlers/icons_handler.h"
|
| #include "extensions/common/manifest_handlers/incognito_info.h"
|
| @@ -26,6 +27,7 @@ void RegisterCommonManifestHandlers() {
|
| (new BackgroundManifestHandler)->Register();
|
| (new CSPHandler(false))->Register();
|
| (new CSPHandler(true))->Register();
|
| + (new ExternallyConnectableHandler)->Register();
|
| (new FileHandlersParser)->Register();
|
| (new IconsHandler)->Register();
|
| (new IncognitoHandler)->Register();
|
|
|