| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "extensions/common/common_manifest_handlers.h" | 5 #include "extensions/common/common_manifest_handlers.h" |
| 6 | 6 |
| 7 #include "extensions/common/api/sockets/sockets_manifest_handler.h" |
| 7 #include "extensions/common/manifest_handler.h" | 8 #include "extensions/common/manifest_handler.h" |
| 8 #include "extensions/common/manifest_handlers/background_info.h" | 9 #include "extensions/common/manifest_handlers/background_info.h" |
| 9 #include "extensions/common/manifest_handlers/csp_info.h" | 10 #include "extensions/common/manifest_handlers/csp_info.h" |
| 10 #include "extensions/common/manifest_handlers/externally_connectable.h" | 11 #include "extensions/common/manifest_handlers/externally_connectable.h" |
| 11 #include "extensions/common/manifest_handlers/file_handler_info.h" | 12 #include "extensions/common/manifest_handlers/file_handler_info.h" |
| 12 #include "extensions/common/manifest_handlers/icons_handler.h" | 13 #include "extensions/common/manifest_handlers/icons_handler.h" |
| 13 #include "extensions/common/manifest_handlers/incognito_info.h" | 14 #include "extensions/common/manifest_handlers/incognito_info.h" |
| 14 #include "extensions/common/manifest_handlers/kiosk_mode_info.h" | 15 #include "extensions/common/manifest_handlers/kiosk_mode_info.h" |
| 15 #include "extensions/common/manifest_handlers/launcher_page_info.h" | 16 #include "extensions/common/manifest_handlers/launcher_page_info.h" |
| 16 #include "extensions/common/manifest_handlers/nacl_modules_handler.h" | 17 #include "extensions/common/manifest_handlers/nacl_modules_handler.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 33 (new IconsHandler)->Register(); | 34 (new IconsHandler)->Register(); |
| 34 (new IncognitoHandler)->Register(); | 35 (new IncognitoHandler)->Register(); |
| 35 (new KioskModeHandler)->Register(); | 36 (new KioskModeHandler)->Register(); |
| 36 (new LauncherPageHandler)->Register(); | 37 (new LauncherPageHandler)->Register(); |
| 37 #if !defined(DISABLE_NACL) | 38 #if !defined(DISABLE_NACL) |
| 38 (new NaClModulesHandler)->Register(); | 39 (new NaClModulesHandler)->Register(); |
| 39 #endif | 40 #endif |
| 40 (new OfflineEnabledHandler)->Register(); | 41 (new OfflineEnabledHandler)->Register(); |
| 41 (new SandboxedPageHandler)->Register(); | 42 (new SandboxedPageHandler)->Register(); |
| 42 (new SharedModuleHandler)->Register(); | 43 (new SharedModuleHandler)->Register(); |
| 44 (new SocketsManifestHandler)->Register(); |
| 43 (new WebAccessibleResourcesHandler)->Register(); | 45 (new WebAccessibleResourcesHandler)->Register(); |
| 44 (new WebviewHandler)->Register(); | 46 (new WebviewHandler)->Register(); |
| 45 #endif // defined(ENABLE_EXTENSIONS) | 47 #endif // defined(ENABLE_EXTENSIONS) |
| 46 } | 48 } |
| 47 | 49 |
| 48 } // namespace extensions | 50 } // namespace extensions |
| OLD | NEW |