| Index: extensions/common/common_manifest_handlers.cc
|
| diff --git a/extensions/common/common_manifest_handlers.cc b/extensions/common/common_manifest_handlers.cc
|
| index 2dc14f2598c1edcf32a6a90fc5e0d1695a152c96..c92c7463ecc00a1f23a23063d6e41e1d9e40df7a 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/file_handler_info.h"
|
| #include "extensions/common/manifest_handlers/incognito_info.h"
|
| #include "extensions/common/manifest_handlers/kiosk_mode_info.h"
|
| #include "extensions/common/manifest_handlers/offline_enabled_info.h"
|
| @@ -22,6 +23,7 @@ void RegisterCommonManifestHandlers() {
|
| (new BackgroundManifestHandler)->Register();
|
| (new CSPHandler(false))->Register();
|
| (new CSPHandler(true))->Register();
|
| + (new FileHandlersParser)->Register();
|
| (new IncognitoHandler)->Register();
|
| (new KioskModeHandler)->Register();
|
| (new OfflineEnabledHandler)->Register();
|
|
|