| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "chrome/common/extensions/chrome_manifest_handlers.h" | 5 #include "chrome/common/extensions/chrome_manifest_handlers.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" |
| 7 #include "chrome/common/extensions/api/commands/commands_handler.h" | 8 #include "chrome/common/extensions/api/commands/commands_handler.h" |
| 8 #include "chrome/common/extensions/api/omnibox/omnibox_handler.h" | 9 #include "chrome/common/extensions/api/omnibox/omnibox_handler.h" |
| 9 #include "chrome/common/extensions/api/plugins/plugins_handler.h" | 10 #include "chrome/common/extensions/api/plugins/plugins_handler.h" |
| 10 #include "chrome/common/extensions/api/speech/tts_engine_manifest_handler.h" | 11 #include "chrome/common/extensions/api/speech/tts_engine_manifest_handler.h" |
| 11 #include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h" | 12 #include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h" |
| 12 #include "chrome/common/extensions/api/storage/storage_schema_manifest_handler.h
" | 13 #include "chrome/common/extensions/api/storage/storage_schema_manifest_handler.h
" |
| 13 #include "chrome/common/extensions/api/system_indicator/system_indicator_handler
.h" | 14 #include "chrome/common/extensions/api/system_indicator/system_indicator_handler
.h" |
| 14 #include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h" | 15 #include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h" |
| 15 #include "chrome/common/extensions/chrome_manifest_url_handlers.h" | 16 #include "chrome/common/extensions/chrome_manifest_url_handlers.h" |
| 16 #include "chrome/common/extensions/manifest_handlers/app_icon_color_info.h" | 17 #include "chrome/common/extensions/manifest_handlers/app_icon_color_info.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 (new UrlHandlersParser)->Register(); | 68 (new UrlHandlersParser)->Register(); |
| 68 (new URLOverridesHandler)->Register(); | 69 (new URLOverridesHandler)->Register(); |
| 69 #if defined(OS_CHROMEOS) | 70 #if defined(OS_CHROMEOS) |
| 70 (new FileBrowserHandlerParser)->Register(); | 71 (new FileBrowserHandlerParser)->Register(); |
| 71 (new FileSystemProviderCapabilitiesHandler)->Register(); | 72 (new FileSystemProviderCapabilitiesHandler)->Register(); |
| 72 (new InputComponentsHandler)->Register(); | 73 (new InputComponentsHandler)->Register(); |
| 73 #endif | 74 #endif |
| 74 } | 75 } |
| 75 | 76 |
| 76 } // namespace extensions | 77 } // namespace extensions |
| OLD | NEW |