| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 #include "url/origin.h" | 195 #include "url/origin.h" |
| 196 | 196 |
| 197 #if defined(OS_WIN) | 197 #if defined(OS_WIN) |
| 198 #include "base/strings/string_tokenizer.h" | 198 #include "base/strings/string_tokenizer.h" |
| 199 #include "chrome/browser/chrome_browser_main_win.h" | 199 #include "chrome/browser/chrome_browser_main_win.h" |
| 200 #include "sandbox/win/src/sandbox_policy.h" | 200 #include "sandbox/win/src/sandbox_policy.h" |
| 201 #elif defined(OS_MACOSX) | 201 #elif defined(OS_MACOSX) |
| 202 #include "chrome/browser/chrome_browser_main_mac.h" | 202 #include "chrome/browser/chrome_browser_main_mac.h" |
| 203 #elif defined(OS_CHROMEOS) | 203 #elif defined(OS_CHROMEOS) |
| 204 #include "chrome/browser/chromeos/arc/arc_auth_service.h" | 204 #include "chrome/browser/chromeos/arc/arc_auth_service.h" |
| 205 #include "chrome/browser/chromeos/arc/arc_navigation_throttle.h" | 205 #include "chrome/browser/chromeos/arc/ui/arc_navigation_throttle.h" |
| 206 #include "chrome/browser/chromeos/attestation/platform_verification_impl.h" | 206 #include "chrome/browser/chromeos/attestation/platform_verification_impl.h" |
| 207 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" | 207 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
| 208 #include "chrome/browser/chromeos/chrome_interface_factory.h" | 208 #include "chrome/browser/chromeos/chrome_interface_factory.h" |
| 209 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" | 209 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" |
| 210 #include "chrome/browser/chromeos/file_manager/app_id.h" | 210 #include "chrome/browser/chromeos/file_manager/app_id.h" |
| 211 #include "chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.
h" | 211 #include "chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.
h" |
| 212 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" | 212 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" |
| 213 #include "chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h" | 213 #include "chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h" |
| 214 #include "chrome/browser/chromeos/login/signin/merge_session_navigation_throttle
.h" | 214 #include "chrome/browser/chromeos/login/signin/merge_session_navigation_throttle
.h" |
| 215 #include "chrome/browser/chromeos/login/signin/merge_session_throttling_utils.h" | 215 #include "chrome/browser/chromeos/login/signin/merge_session_throttling_utils.h" |
| (...skipping 3033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3249 kWebRtcDevSwitchNames, | 3249 kWebRtcDevSwitchNames, |
| 3250 arraysize(kWebRtcDevSwitchNames)); | 3250 arraysize(kWebRtcDevSwitchNames)); |
| 3251 } | 3251 } |
| 3252 } | 3252 } |
| 3253 #endif // defined(ENABLE_WEBRTC) | 3253 #endif // defined(ENABLE_WEBRTC) |
| 3254 | 3254 |
| 3255 std::unique_ptr<content::MemoryCoordinatorDelegate> | 3255 std::unique_ptr<content::MemoryCoordinatorDelegate> |
| 3256 ChromeContentBrowserClient::GetMemoryCoordinatorDelegate() { | 3256 ChromeContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 3257 return memory::ChromeMemoryCoordinatorDelegate::Create(); | 3257 return memory::ChromeMemoryCoordinatorDelegate::Create(); |
| 3258 } | 3258 } |
| OLD | NEW |