| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 #include "content/public/browser/web_contents.h" | 145 #include "content/public/browser/web_contents.h" |
| 146 #include "content/public/common/child_process_host.h" | 146 #include "content/public/common/child_process_host.h" |
| 147 #include "content/public/common/content_descriptors.h" | 147 #include "content/public/common/content_descriptors.h" |
| 148 #include "content/public/common/content_switches.h" | 148 #include "content/public/common/content_switches.h" |
| 149 #include "content/public/common/sandbox_type.h" | 149 #include "content/public/common/sandbox_type.h" |
| 150 #include "content/public/common/service_registry.h" | 150 #include "content/public/common/service_registry.h" |
| 151 #include "content/public/common/url_utils.h" | 151 #include "content/public/common/url_utils.h" |
| 152 #include "content/public/common/web_preferences.h" | 152 #include "content/public/common/web_preferences.h" |
| 153 #include "device/devices_app/usb/public/interfaces/device_manager.mojom.h" | 153 #include "device/devices_app/usb/public/interfaces/device_manager.mojom.h" |
| 154 #include "gin/v8_initializer.h" | 154 #include "gin/v8_initializer.h" |
| 155 #include "mojo/application/public/cpp/application_delegate.h" | 155 #include "mojo/shell/public/cpp/application_delegate.h" |
| 156 #include "net/base/mime_util.h" | 156 #include "net/base/mime_util.h" |
| 157 #include "net/cookies/canonical_cookie.h" | 157 #include "net/cookies/canonical_cookie.h" |
| 158 #include "net/cookies/cookie_options.h" | 158 #include "net/cookies/cookie_options.h" |
| 159 #include "net/ssl/ssl_cert_request_info.h" | 159 #include "net/ssl/ssl_cert_request_info.h" |
| 160 #include "ppapi/host/ppapi_host.h" | 160 #include "ppapi/host/ppapi_host.h" |
| 161 #include "storage/browser/fileapi/external_mount_points.h" | 161 #include "storage/browser/fileapi/external_mount_points.h" |
| 162 #include "ui/base/l10n/l10n_util.h" | 162 #include "ui/base/l10n/l10n_util.h" |
| 163 #include "ui/base/resource/resource_bundle.h" | 163 #include "ui/base/resource/resource_bundle.h" |
| 164 #include "ui/resources/grit/ui_resources.h" | 164 #include "ui/resources/grit/ui_resources.h" |
| 165 | 165 |
| (...skipping 2651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2817 if (channel <= kMaxDisableEncryptionChannel) { | 2817 if (channel <= kMaxDisableEncryptionChannel) { |
| 2818 static const char* const kWebRtcDevSwitchNames[] = { | 2818 static const char* const kWebRtcDevSwitchNames[] = { |
| 2819 switches::kDisableWebRtcEncryption, | 2819 switches::kDisableWebRtcEncryption, |
| 2820 }; | 2820 }; |
| 2821 to_command_line->CopySwitchesFrom(from_command_line, | 2821 to_command_line->CopySwitchesFrom(from_command_line, |
| 2822 kWebRtcDevSwitchNames, | 2822 kWebRtcDevSwitchNames, |
| 2823 arraysize(kWebRtcDevSwitchNames)); | 2823 arraysize(kWebRtcDevSwitchNames)); |
| 2824 } | 2824 } |
| 2825 } | 2825 } |
| 2826 #endif // defined(ENABLE_WEBRTC) | 2826 #endif // defined(ENABLE_WEBRTC) |
| OLD | NEW |