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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 #include "ui/resources/grit/ui_resources.h" | 138 #include "ui/resources/grit/ui_resources.h" |
139 #include "webkit/browser/fileapi/external_mount_points.h" | 139 #include "webkit/browser/fileapi/external_mount_points.h" |
140 | 140 |
141 #if defined(OS_WIN) | 141 #if defined(OS_WIN) |
142 #include "base/win/windows_version.h" | 142 #include "base/win/windows_version.h" |
143 #include "chrome/browser/chrome_browser_main_win.h" | 143 #include "chrome/browser/chrome_browser_main_win.h" |
144 #include "sandbox/win/src/sandbox_policy.h" | 144 #include "sandbox/win/src/sandbox_policy.h" |
145 #elif defined(OS_MACOSX) | 145 #elif defined(OS_MACOSX) |
146 #include "chrome/browser/chrome_browser_main_mac.h" | 146 #include "chrome/browser/chrome_browser_main_mac.h" |
147 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" | 147 #include "chrome/browser/spellchecker/spellcheck_message_filter_mac.h" |
148 #include "components/breakpad/app/breakpad_mac.h" | 148 #include "components/crash/app/breakpad_mac.h" |
149 #elif defined(OS_CHROMEOS) | 149 #elif defined(OS_CHROMEOS) |
150 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" | 150 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
151 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" | 151 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" |
152 #include "chrome/browser/chromeos/file_manager/app_id.h" | 152 #include "chrome/browser/chromeos/file_manager/app_id.h" |
153 #include "chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.
h" | 153 #include "chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.
h" |
154 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" | 154 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" |
155 #include "chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h" | 155 #include "chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h" |
156 #include "chrome/browser/chromeos/login/startup_utils.h" | 156 #include "chrome/browser/chromeos/login/startup_utils.h" |
157 #include "chrome/browser/chromeos/system/input_device_settings.h" | 157 #include "chrome/browser/chromeos/system/input_device_settings.h" |
158 #include "chromeos/chromeos_switches.h" | 158 #include "chromeos/chromeos_switches.h" |
159 #include "components/user_manager/user_manager.h" | 159 #include "components/user_manager/user_manager.h" |
160 #elif defined(OS_LINUX) | 160 #elif defined(OS_LINUX) |
161 #include "chrome/browser/chrome_browser_main_linux.h" | 161 #include "chrome/browser/chrome_browser_main_linux.h" |
162 #elif defined(OS_ANDROID) | 162 #elif defined(OS_ANDROID) |
163 #include "chrome/browser/android/new_tab_page_url_handler.h" | 163 #include "chrome/browser/android/new_tab_page_url_handler.h" |
164 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" | 164 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" |
165 #include "chrome/browser/chrome_browser_main_android.h" | 165 #include "chrome/browser/chrome_browser_main_android.h" |
166 #include "chrome/browser/media/protected_media_identifier_permission_context.h" | 166 #include "chrome/browser/media/protected_media_identifier_permission_context.h" |
167 #include "chrome/browser/media/protected_media_identifier_permission_context_fac
tory.h" | 167 #include "chrome/browser/media/protected_media_identifier_permission_context_fac
tory.h" |
168 #include "chrome/common/descriptors_android.h" | 168 #include "chrome/common/descriptors_android.h" |
169 #include "components/breakpad/browser/crash_dump_manager_android.h" | 169 #include "components/crash/browser/crash_dump_manager_android.h" |
170 #elif defined(OS_POSIX) | 170 #elif defined(OS_POSIX) |
171 #include "chrome/browser/chrome_browser_main_posix.h" | 171 #include "chrome/browser/chrome_browser_main_posix.h" |
172 #endif | 172 #endif |
173 | 173 |
174 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 174 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
175 #include "base/debug/leak_annotations.h" | 175 #include "base/debug/leak_annotations.h" |
176 #include "components/breakpad/app/breakpad_linux.h" | 176 #include "components/crash/app/breakpad_linux.h" |
177 #include "components/breakpad/browser/crash_handler_host_linux.h" | 177 #include "components/crash/browser/crash_handler_host_linux.h" |
178 #endif | 178 #endif |
179 | 179 |
180 #if defined(OS_ANDROID) | 180 #if defined(OS_ANDROID) |
181 #include "ui/base/ui_base_paths.h" | 181 #include "ui/base/ui_base_paths.h" |
182 #include "ui/gfx/android/device_display_info.h" | 182 #include "ui/gfx/android/device_display_info.h" |
183 #endif | 183 #endif |
184 | 184 |
185 #if !defined(OS_CHROMEOS) | 185 #if !defined(OS_CHROMEOS) |
186 #include "chrome/browser/signin/chrome_signin_client.h" | 186 #include "chrome/browser/signin/chrome_signin_client.h" |
187 #include "chrome/browser/signin/chrome_signin_client_factory.h" | 187 #include "chrome/browser/signin/chrome_signin_client_factory.h" |
(...skipping 2397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2585 switches::kDisableWebRtcEncryption, | 2585 switches::kDisableWebRtcEncryption, |
2586 }; | 2586 }; |
2587 to_command_line->CopySwitchesFrom(from_command_line, | 2587 to_command_line->CopySwitchesFrom(from_command_line, |
2588 kWebRtcDevSwitchNames, | 2588 kWebRtcDevSwitchNames, |
2589 arraysize(kWebRtcDevSwitchNames)); | 2589 arraysize(kWebRtcDevSwitchNames)); |
2590 } | 2590 } |
2591 } | 2591 } |
2592 #endif // defined(ENABLE_WEBRTC) | 2592 #endif // defined(ENABLE_WEBRTC) |
2593 | 2593 |
2594 } // namespace chrome | 2594 } // namespace chrome |
OLD | NEW |