| 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 <set> | 7 #include <set> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 #include "components/nacl/browser/nacl_host_message_filter.h" | 214 #include "components/nacl/browser/nacl_host_message_filter.h" |
| 215 #include "components/nacl/browser/nacl_process_host.h" | 215 #include "components/nacl/browser/nacl_process_host.h" |
| 216 #include "components/nacl/common/nacl_process_type.h" | 216 #include "components/nacl/common/nacl_process_type.h" |
| 217 #include "components/nacl/common/nacl_switches.h" | 217 #include "components/nacl/common/nacl_switches.h" |
| 218 #endif | 218 #endif |
| 219 | 219 |
| 220 #if defined(ENABLE_EXTENSIONS) | 220 #if defined(ENABLE_EXTENSIONS) |
| 221 #include "chrome/browser/extensions/chrome_content_browser_client_extensions_par
t.h" | 221 #include "chrome/browser/extensions/chrome_content_browser_client_extensions_par
t.h" |
| 222 #include "chrome/browser/extensions/extension_service.h" | 222 #include "chrome/browser/extensions/extension_service.h" |
| 223 #include "chrome/browser/extensions/extension_util.h" | 223 #include "chrome/browser/extensions/extension_util.h" |
| 224 #include "chrome/browser/guest_view/web_view/web_view_guest.h" | |
| 225 #include "chrome/browser/guest_view/web_view/web_view_permission_helper.h" | |
| 226 #include "chrome/browser/guest_view/web_view/web_view_renderer_state.h" | |
| 227 #include "extensions/browser/guest_view/guest_view_base.h" | 224 #include "extensions/browser/guest_view/guest_view_base.h" |
| 228 #include "extensions/browser/guest_view/guest_view_constants.h" | 225 #include "extensions/browser/guest_view/guest_view_constants.h" |
| 229 #include "extensions/browser/guest_view/guest_view_manager.h" | 226 #include "extensions/browser/guest_view/guest_view_manager.h" |
| 227 #include "extensions/browser/guest_view/web_view/web_view_guest.h" |
| 228 #include "extensions/browser/guest_view/web_view/web_view_permission_helper.h" |
| 229 #include "extensions/browser/guest_view/web_view/web_view_renderer_state.h" |
| 230 #include "extensions/browser/suggest_permission_util.h" | 230 #include "extensions/browser/suggest_permission_util.h" |
| 231 #include "extensions/common/manifest_handlers/background_info.h" | 231 #include "extensions/common/manifest_handlers/background_info.h" |
| 232 #endif | 232 #endif |
| 233 | 233 |
| 234 #if defined(ENABLE_SPELLCHECK) | 234 #if defined(ENABLE_SPELLCHECK) |
| 235 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" | 235 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" |
| 236 #endif | 236 #endif |
| 237 | 237 |
| 238 #if defined(ENABLE_SERVICE_DISCOVERY) | 238 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 239 #include "chrome/browser/local_discovery/storage/privet_filesystem_backend.h" | 239 #include "chrome/browser/local_discovery/storage/privet_filesystem_backend.h" |
| (...skipping 2347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2587 switches::kDisableWebRtcEncryption, | 2587 switches::kDisableWebRtcEncryption, |
| 2588 }; | 2588 }; |
| 2589 to_command_line->CopySwitchesFrom(from_command_line, | 2589 to_command_line->CopySwitchesFrom(from_command_line, |
| 2590 kWebRtcDevSwitchNames, | 2590 kWebRtcDevSwitchNames, |
| 2591 arraysize(kWebRtcDevSwitchNames)); | 2591 arraysize(kWebRtcDevSwitchNames)); |
| 2592 } | 2592 } |
| 2593 } | 2593 } |
| 2594 #endif // defined(ENABLE_WEBRTC) | 2594 #endif // defined(ENABLE_WEBRTC) |
| 2595 | 2595 |
| 2596 } // namespace chrome | 2596 } // namespace chrome |
| OLD | NEW |