blob: b2f01e76166a2ad1e6c606f2b9addb8235f01b12 [file] [log] [blame]
[email protected]08b71392014-01-07 18:52:091// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "extensions/common/common_manifest_handlers.h"
6
7#include "extensions/common/manifest_handler.h"
8#include "extensions/common/manifest_handlers/background_info.h"
9#include "extensions/common/manifest_handlers/csp_info.h"
[email protected]53c7e6f2014-05-20 21:14:0810#include "extensions/common/manifest_handlers/file_handler_info.h"
[email protected]a9a66152014-06-20 21:24:3311#include "extensions/common/manifest_handlers/icons_handler.h"
[email protected]08b71392014-01-07 18:52:0912#include "extensions/common/manifest_handlers/incognito_info.h"
13#include "extensions/common/manifest_handlers/kiosk_mode_info.h"
14#include "extensions/common/manifest_handlers/offline_enabled_info.h"
15#include "extensions/common/manifest_handlers/sandboxed_page_info.h"
16#include "extensions/common/manifest_handlers/shared_module_info.h"
[email protected]474b1f72014-01-16 02:38:0717#include "extensions/common/manifest_handlers/web_accessible_resources_info.h"
18#include "extensions/common/manifest_handlers/webview_info.h"
[email protected]08b71392014-01-07 18:52:0919
20namespace extensions {
21
22void RegisterCommonManifestHandlers() {
23 DCHECK(!ManifestHandler::IsRegistrationFinalized());
24 (new BackgroundManifestHandler)->Register();
25 (new CSPHandler(false))->Register();
26 (new CSPHandler(true))->Register();
[email protected]53c7e6f2014-05-20 21:14:0827 (new FileHandlersParser)->Register();
[email protected]a9a66152014-06-20 21:24:3328 (new IconsHandler)->Register();
[email protected]08b71392014-01-07 18:52:0929 (new IncognitoHandler)->Register();
30 (new KioskModeHandler)->Register();
31 (new OfflineEnabledHandler)->Register();
32 (new SandboxedPageHandler)->Register();
33 (new SharedModuleHandler)->Register();
[email protected]474b1f72014-01-16 02:38:0734 (new WebAccessibleResourcesHandler)->Register();
35 (new WebviewHandler)->Register();
[email protected]08b71392014-01-07 18:52:0936}
37
38} // namespace extensions