| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 | 297 |
| 298 #if defined(ENABLE_PLUGINS) | 298 #if defined(ENABLE_PLUGINS) |
| 299 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h" | 299 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h" |
| 300 #endif | 300 #endif |
| 301 | 301 |
| 302 #if defined(ENABLE_SPELLCHECK) | 302 #if defined(ENABLE_SPELLCHECK) |
| 303 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" | 303 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" |
| 304 #endif | 304 #endif |
| 305 | 305 |
| 306 #if defined(USE_BROWSER_SPELLCHECKER) | 306 #if defined(USE_BROWSER_SPELLCHECKER) |
| 307 #include "chrome/browser/spellchecker/spellcheck_message_filter_platform.h" | 307 #include "components/spellcheck/browser/spellcheck_message_filter_platform.h" |
| 308 #endif | 308 #endif |
| 309 | 309 |
| 310 #if defined(ENABLE_WEBRTC) | 310 #if defined(ENABLE_WEBRTC) |
| 311 #include "chrome/browser/media/audio_debug_recordings_handler.h" | 311 #include "chrome/browser/media/audio_debug_recordings_handler.h" |
| 312 #include "chrome/browser/media/webrtc_event_log_handler.h" | 312 #include "chrome/browser/media/webrtc_event_log_handler.h" |
| 313 #include "chrome/browser/media/webrtc_logging_handler_host.h" | 313 #include "chrome/browser/media/webrtc_logging_handler_host.h" |
| 314 #endif | 314 #endif |
| 315 | 315 |
| 316 #if defined(ENABLE_MEDIA_ROUTER) | 316 #if defined(ENABLE_MEDIA_ROUTER) |
| 317 #include "chrome/browser/media/router/media_router_feature.h" | 317 #include "chrome/browser/media/router/media_router_feature.h" |
| (...skipping 2736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3054 if (channel <= kMaxDisableEncryptionChannel) { | 3054 if (channel <= kMaxDisableEncryptionChannel) { |
| 3055 static const char* const kWebRtcDevSwitchNames[] = { | 3055 static const char* const kWebRtcDevSwitchNames[] = { |
| 3056 switches::kDisableWebRtcEncryption, | 3056 switches::kDisableWebRtcEncryption, |
| 3057 }; | 3057 }; |
| 3058 to_command_line->CopySwitchesFrom(from_command_line, | 3058 to_command_line->CopySwitchesFrom(from_command_line, |
| 3059 kWebRtcDevSwitchNames, | 3059 kWebRtcDevSwitchNames, |
| 3060 arraysize(kWebRtcDevSwitchNames)); | 3060 arraysize(kWebRtcDevSwitchNames)); |
| 3061 } | 3061 } |
| 3062 } | 3062 } |
| 3063 #endif // defined(ENABLE_WEBRTC) | 3063 #endif // defined(ENABLE_WEBRTC) |
| OLD | NEW |