| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/browser/chrome_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 | 291 |
| 292 #if defined(ENABLE_PLUGINS) | 292 #if defined(ENABLE_PLUGINS) |
| 293 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h" | 293 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h" |
| 294 #endif | 294 #endif |
| 295 | 295 |
| 296 #if defined(ENABLE_SPELLCHECK) | 296 #if defined(ENABLE_SPELLCHECK) |
| 297 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" | 297 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" |
| 298 #endif | 298 #endif |
| 299 | 299 |
| 300 #if defined(USE_BROWSER_SPELLCHECKER) | 300 #if defined(USE_BROWSER_SPELLCHECKER) |
| 301 #include "chrome/browser/spellchecker/spellcheck_message_filter_platform.h" | 301 #include "components/spellcheck/browser/spellcheck_message_filter_platform.h" |
| 302 #endif | 302 #endif |
| 303 | 303 |
| 304 #if defined(ENABLE_WEBRTC) | 304 #if defined(ENABLE_WEBRTC) |
| 305 #include "chrome/browser/media/audio_debug_recordings_handler.h" | 305 #include "chrome/browser/media/audio_debug_recordings_handler.h" |
| 306 #include "chrome/browser/media/webrtc_event_log_handler.h" | 306 #include "chrome/browser/media/webrtc_event_log_handler.h" |
| 307 #include "chrome/browser/media/webrtc_logging_handler_host.h" | 307 #include "chrome/browser/media/webrtc_logging_handler_host.h" |
| 308 #endif | 308 #endif |
| 309 | 309 |
| 310 #if defined(ENABLE_MEDIA_ROUTER) | 310 #if defined(ENABLE_MEDIA_ROUTER) |
| 311 #include "chrome/browser/media/router/media_router_feature.h" | 311 #include "chrome/browser/media/router/media_router_feature.h" |
| (...skipping 2734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3046 if (channel <= kMaxDisableEncryptionChannel) { | 3046 if (channel <= kMaxDisableEncryptionChannel) { |
| 3047 static const char* const kWebRtcDevSwitchNames[] = { | 3047 static const char* const kWebRtcDevSwitchNames[] = { |
| 3048 switches::kDisableWebRtcEncryption, | 3048 switches::kDisableWebRtcEncryption, |
| 3049 }; | 3049 }; |
| 3050 to_command_line->CopySwitchesFrom(from_command_line, | 3050 to_command_line->CopySwitchesFrom(from_command_line, |
| 3051 kWebRtcDevSwitchNames, | 3051 kWebRtcDevSwitchNames, |
| 3052 arraysize(kWebRtcDevSwitchNames)); | 3052 arraysize(kWebRtcDevSwitchNames)); |
| 3053 } | 3053 } |
| 3054 } | 3054 } |
| 3055 #endif // defined(ENABLE_WEBRTC) | 3055 #endif // defined(ENABLE_WEBRTC) |
| OLD | NEW |