Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: extensions/common/common_manifest_handlers.cc

Issue 586873003: extensions: Move sockets manifest handler registration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698