| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 #include "content/public/common/content_descriptors.h" | 117 #include "content/public/common/content_descriptors.h" |
| 118 #include "content/public/common/show_desktop_notification_params.h" | 118 #include "content/public/common/show_desktop_notification_params.h" |
| 119 #include "content/public/common/url_utils.h" | 119 #include "content/public/common/url_utils.h" |
| 120 #include "content/public/common/web_preferences.h" | 120 #include "content/public/common/web_preferences.h" |
| 121 #include "net/base/mime_util.h" | 121 #include "net/base/mime_util.h" |
| 122 #include "net/cookies/canonical_cookie.h" | 122 #include "net/cookies/canonical_cookie.h" |
| 123 #include "net/cookies/cookie_options.h" | 123 #include "net/cookies/cookie_options.h" |
| 124 #include "net/ssl/ssl_cert_request_info.h" | 124 #include "net/ssl/ssl_cert_request_info.h" |
| 125 #include "ppapi/host/ppapi_host.h" | 125 #include "ppapi/host/ppapi_host.h" |
| 126 #include "ppapi/shared_impl/ppapi_switches.h" | 126 #include "ppapi/shared_impl/ppapi_switches.h" |
| 127 #include "storage/browser/fileapi/external_mount_points.h" |
| 127 #include "ui/base/l10n/l10n_util.h" | 128 #include "ui/base/l10n/l10n_util.h" |
| 128 #include "ui/base/resource/resource_bundle.h" | 129 #include "ui/base/resource/resource_bundle.h" |
| 129 #include "ui/resources/grit/ui_resources.h" | 130 #include "ui/resources/grit/ui_resources.h" |
| 130 #include "webkit/browser/fileapi/external_mount_points.h" | |
| 131 | 131 |
| 132 #if defined(OS_WIN) | 132 #if defined(OS_WIN) |
| 133 #include "base/win/windows_version.h" | 133 #include "base/win/windows_version.h" |
| 134 #include "chrome/browser/chrome_browser_main_win.h" | 134 #include "chrome/browser/chrome_browser_main_win.h" |
| 135 #include "sandbox/win/src/sandbox_policy.h" | 135 #include "sandbox/win/src/sandbox_policy.h" |
| 136 #elif defined(OS_MACOSX) | 136 #elif defined(OS_MACOSX) |
| 137 #include "chrome/browser/chrome_browser_main_mac.h" | 137 #include "chrome/browser/chrome_browser_main_mac.h" |
| 138 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" | 138 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" |
| 139 #include "components/crash/app/breakpad_mac.h" | 139 #include "components/crash/app/breakpad_mac.h" |
| 140 #elif defined(OS_CHROMEOS) | 140 #elif defined(OS_CHROMEOS) |
| (...skipping 2451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2592 switches::kDisableWebRtcEncryption, | 2592 switches::kDisableWebRtcEncryption, |
| 2593 }; | 2593 }; |
| 2594 to_command_line->CopySwitchesFrom(from_command_line, | 2594 to_command_line->CopySwitchesFrom(from_command_line, |
| 2595 kWebRtcDevSwitchNames, | 2595 kWebRtcDevSwitchNames, |
| 2596 arraysize(kWebRtcDevSwitchNames)); | 2596 arraysize(kWebRtcDevSwitchNames)); |
| 2597 } | 2597 } |
| 2598 } | 2598 } |
| 2599 #endif // defined(ENABLE_WEBRTC) | 2599 #endif // defined(ENABLE_WEBRTC) |
| 2600 | 2600 |
| 2601 } // namespace chrome | 2601 } // namespace chrome |
| OLD | NEW |