| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/devices_app/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/application_delegate.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" |
| 165 #include "ui/resources/grit/ui_resources.h" | 165 #include "ui/resources/grit/ui_resources.h" |
| 166 | 166 |
| (...skipping 2726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2893 if (channel <= kMaxDisableEncryptionChannel) { | 2893 if (channel <= kMaxDisableEncryptionChannel) { |
| 2894 static const char* const kWebRtcDevSwitchNames[] = { | 2894 static const char* const kWebRtcDevSwitchNames[] = { |
| 2895 switches::kDisableWebRtcEncryption, | 2895 switches::kDisableWebRtcEncryption, |
| 2896 }; | 2896 }; |
| 2897 to_command_line->CopySwitchesFrom(from_command_line, | 2897 to_command_line->CopySwitchesFrom(from_command_line, |
| 2898 kWebRtcDevSwitchNames, | 2898 kWebRtcDevSwitchNames, |
| 2899 arraysize(kWebRtcDevSwitchNames)); | 2899 arraysize(kWebRtcDevSwitchNames)); |
| 2900 } | 2900 } |
| 2901 } | 2901 } |
| 2902 #endif // defined(ENABLE_WEBRTC) | 2902 #endif // defined(ENABLE_WEBRTC) |
| OLD | NEW |