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

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

Issue 1123093003: Add a manifest property declaring USB printers supported by an app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix interfaceProtocol documentation. Created 5 years, 7 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/bluetooth/bluetooth_manifest_handler.h" 7 #include "extensions/common/api/bluetooth/bluetooth_manifest_handler.h"
8 #include "extensions/common/api/printer_provider/usb_printer_manifest_handler.h"
8 #include "extensions/common/api/sockets/sockets_manifest_handler.h" 9 #include "extensions/common/api/sockets/sockets_manifest_handler.h"
9 #include "extensions/common/manifest_handler.h" 10 #include "extensions/common/manifest_handler.h"
10 #include "extensions/common/manifest_handlers/background_info.h" 11 #include "extensions/common/manifest_handlers/background_info.h"
11 #include "extensions/common/manifest_handlers/content_capabilities_handler.h" 12 #include "extensions/common/manifest_handlers/content_capabilities_handler.h"
12 #include "extensions/common/manifest_handlers/csp_info.h" 13 #include "extensions/common/manifest_handlers/csp_info.h"
13 #include "extensions/common/manifest_handlers/default_locale_handler.h" 14 #include "extensions/common/manifest_handlers/default_locale_handler.h"
14 #include "extensions/common/manifest_handlers/externally_connectable.h" 15 #include "extensions/common/manifest_handlers/externally_connectable.h"
15 #include "extensions/common/manifest_handlers/file_handler_info.h" 16 #include "extensions/common/manifest_handlers/file_handler_info.h"
16 #include "extensions/common/manifest_handlers/icons_handler.h" 17 #include "extensions/common/manifest_handlers/icons_handler.h"
17 #include "extensions/common/manifest_handlers/incognito_info.h" 18 #include "extensions/common/manifest_handlers/incognito_info.h"
(...skipping 26 matching lines...) Expand all
44 (new LauncherPageHandler)->Register(); 45 (new LauncherPageHandler)->Register();
45 (new MimeTypesHandlerParser)->Register(); 46 (new MimeTypesHandlerParser)->Register();
46 #if !defined(DISABLE_NACL) 47 #if !defined(DISABLE_NACL)
47 (new NaClModulesHandler)->Register(); 48 (new NaClModulesHandler)->Register();
48 #endif 49 #endif
49 (new OAuth2ManifestHandler)->Register(); 50 (new OAuth2ManifestHandler)->Register();
50 (new OfflineEnabledHandler)->Register(); 51 (new OfflineEnabledHandler)->Register();
51 (new SandboxedPageHandler)->Register(); 52 (new SandboxedPageHandler)->Register();
52 (new SharedModuleHandler)->Register(); 53 (new SharedModuleHandler)->Register();
53 (new SocketsManifestHandler)->Register(); 54 (new SocketsManifestHandler)->Register();
55 (new UsbPrinterManifestHandler)->Register();
54 (new WebAccessibleResourcesHandler)->Register(); 56 (new WebAccessibleResourcesHandler)->Register();
55 (new WebviewHandler)->Register(); 57 (new WebviewHandler)->Register();
56 } 58 }
57 59
58 } // namespace extensions 60 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/api/printer_provider/usb_printer_manifest_unittest.cc ('k') | extensions/common/manifest_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698