| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 #include "chrome/browser/chromeos/system/input_device_settings.h" | 165 #include "chrome/browser/chromeos/system/input_device_settings.h" |
| 166 #include "chromeos/chromeos_switches.h" | 166 #include "chromeos/chromeos_switches.h" |
| 167 #include "components/user_manager/user_manager.h" | 167 #include "components/user_manager/user_manager.h" |
| 168 #elif defined(OS_LINUX) | 168 #elif defined(OS_LINUX) |
| 169 #include "chrome/browser/chrome_browser_main_linux.h" | 169 #include "chrome/browser/chrome_browser_main_linux.h" |
| 170 #elif defined(OS_ANDROID) | 170 #elif defined(OS_ANDROID) |
| 171 #include "chrome/browser/android/new_tab_page_url_handler.h" | 171 #include "chrome/browser/android/new_tab_page_url_handler.h" |
| 172 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" | 172 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" |
| 173 #include "chrome/browser/chrome_browser_main_android.h" | 173 #include "chrome/browser/chrome_browser_main_android.h" |
| 174 #include "chrome/common/descriptors_android.h" | 174 #include "chrome/common/descriptors_android.h" |
| 175 #include "components/crash/content/browser/crash_dump_manager_android.h" | 175 #include "components/crash/browser/crash_dump_manager_android.h" |
| 176 #include "components/service_tab_launcher/browser/android/service_tab_launcher.h
" | 176 #include "components/service_tab_launcher/browser/android/service_tab_launcher.h
" |
| 177 #include "ui/base/resource/resource_bundle_android.h" | 177 #include "ui/base/resource/resource_bundle_android.h" |
| 178 #elif defined(OS_POSIX) | 178 #elif defined(OS_POSIX) |
| 179 #include "chrome/browser/chrome_browser_main_posix.h" | 179 #include "chrome/browser/chrome_browser_main_posix.h" |
| 180 #endif | 180 #endif |
| 181 | 181 |
| 182 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 182 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 183 #include "base/debug/leak_annotations.h" | 183 #include "base/debug/leak_annotations.h" |
| 184 #include "components/crash/content/app/breakpad_linux.h" | 184 #include "components/crash/app/breakpad_linux.h" |
| 185 #include "components/crash/content/browser/crash_handler_host_linux.h" | 185 #include "components/crash/browser/crash_handler_host_linux.h" |
| 186 #endif | 186 #endif |
| 187 | 187 |
| 188 #if defined(OS_ANDROID) | 188 #if defined(OS_ANDROID) |
| 189 #include "ui/base/ui_base_paths.h" | 189 #include "ui/base/ui_base_paths.h" |
| 190 #include "ui/gfx/android/device_display_info.h" | 190 #include "ui/gfx/android/device_display_info.h" |
| 191 #endif | 191 #endif |
| 192 | 192 |
| 193 #if defined(TOOLKIT_VIEWS) | 193 #if defined(TOOLKIT_VIEWS) |
| 194 #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" | 194 #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" |
| 195 #endif | 195 #endif |
| (...skipping 2475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2671 switches::kDisableWebRtcEncryption, | 2671 switches::kDisableWebRtcEncryption, |
| 2672 }; | 2672 }; |
| 2673 to_command_line->CopySwitchesFrom(from_command_line, | 2673 to_command_line->CopySwitchesFrom(from_command_line, |
| 2674 kWebRtcDevSwitchNames, | 2674 kWebRtcDevSwitchNames, |
| 2675 arraysize(kWebRtcDevSwitchNames)); | 2675 arraysize(kWebRtcDevSwitchNames)); |
| 2676 } | 2676 } |
| 2677 } | 2677 } |
| 2678 #endif // defined(ENABLE_WEBRTC) | 2678 #endif // defined(ENABLE_WEBRTC) |
| 2679 | 2679 |
| 2680 } // namespace chrome | 2680 } // namespace chrome |
| OLD | NEW |