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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 #include "content/public/browser/resource_context.h" | 144 #include "content/public/browser/resource_context.h" |
145 #include "content/public/browser/site_instance.h" | 145 #include "content/public/browser/site_instance.h" |
146 #include "content/public/browser/web_contents.h" | 146 #include "content/public/browser/web_contents.h" |
147 #include "content/public/common/child_process_host.h" | 147 #include "content/public/common/child_process_host.h" |
148 #include "content/public/common/content_descriptors.h" | 148 #include "content/public/common/content_descriptors.h" |
149 #include "content/public/common/content_switches.h" | 149 #include "content/public/common/content_switches.h" |
150 #include "content/public/common/sandbox_type.h" | 150 #include "content/public/common/sandbox_type.h" |
151 #include "content/public/common/service_registry.h" | 151 #include "content/public/common/service_registry.h" |
152 #include "content/public/common/url_utils.h" | 152 #include "content/public/common/url_utils.h" |
153 #include "content/public/common/web_preferences.h" | 153 #include "content/public/common/web_preferences.h" |
154 #include "device/devices_app/usb/public/interfaces/device_manager.mojom.h" | 154 #include "device/usb/public/interfaces/device_manager.mojom.h" |
155 #include "gin/v8_initializer.h" | 155 #include "gin/v8_initializer.h" |
156 #include "mojo/shell/public/cpp/shell_client.h" | 156 #include "mojo/shell/public/cpp/shell_client.h" |
157 #include "net/base/mime_util.h" | 157 #include "net/base/mime_util.h" |
158 #include "net/cookies/canonical_cookie.h" | 158 #include "net/cookies/canonical_cookie.h" |
159 #include "net/cookies/cookie_options.h" | 159 #include "net/cookies/cookie_options.h" |
160 #include "net/ssl/ssl_cert_request_info.h" | 160 #include "net/ssl/ssl_cert_request_info.h" |
161 #include "ppapi/host/ppapi_host.h" | 161 #include "ppapi/host/ppapi_host.h" |
162 #include "storage/browser/fileapi/external_mount_points.h" | 162 #include "storage/browser/fileapi/external_mount_points.h" |
163 #include "ui/base/l10n/l10n_util.h" | 163 #include "ui/base/l10n/l10n_util.h" |
164 #include "ui/base/resource/resource_bundle.h" | 164 #include "ui/base/resource/resource_bundle.h" |
(...skipping 2735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2900 if (channel <= kMaxDisableEncryptionChannel) { | 2900 if (channel <= kMaxDisableEncryptionChannel) { |
2901 static const char* const kWebRtcDevSwitchNames[] = { | 2901 static const char* const kWebRtcDevSwitchNames[] = { |
2902 switches::kDisableWebRtcEncryption, | 2902 switches::kDisableWebRtcEncryption, |
2903 }; | 2903 }; |
2904 to_command_line->CopySwitchesFrom(from_command_line, | 2904 to_command_line->CopySwitchesFrom(from_command_line, |
2905 kWebRtcDevSwitchNames, | 2905 kWebRtcDevSwitchNames, |
2906 arraysize(kWebRtcDevSwitchNames)); | 2906 arraysize(kWebRtcDevSwitchNames)); |
2907 } | 2907 } |
2908 } | 2908 } |
2909 #endif // defined(ENABLE_WEBRTC) | 2909 #endif // defined(ENABLE_WEBRTC) |
OLD | NEW |