| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 #include "url/origin.h" | 193 #include "url/origin.h" |
| 194 | 194 |
| 195 #if defined(OS_WIN) | 195 #if defined(OS_WIN) |
| 196 #include "base/strings/string_tokenizer.h" | 196 #include "base/strings/string_tokenizer.h" |
| 197 #include "chrome/browser/chrome_browser_main_win.h" | 197 #include "chrome/browser/chrome_browser_main_win.h" |
| 198 #include "sandbox/win/src/sandbox_policy.h" | 198 #include "sandbox/win/src/sandbox_policy.h" |
| 199 #elif defined(OS_MACOSX) | 199 #elif defined(OS_MACOSX) |
| 200 #include "chrome/browser/chrome_browser_main_mac.h" | 200 #include "chrome/browser/chrome_browser_main_mac.h" |
| 201 #elif defined(OS_CHROMEOS) | 201 #elif defined(OS_CHROMEOS) |
| 202 #include "chrome/browser/chromeos/arc/arc_auth_service.h" | 202 #include "chrome/browser/chromeos/arc/arc_auth_service.h" |
| 203 #include "chrome/browser/chromeos/arc/arc_navigation_throttle.h" | 203 #include "chrome/browser/chromeos/arc/intent_helper/arc_navigation_throttle.h" |
| 204 #include "chrome/browser/chromeos/attestation/platform_verification_impl.h" | 204 #include "chrome/browser/chromeos/attestation/platform_verification_impl.h" |
| 205 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" | 205 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
| 206 #include "chrome/browser/chromeos/chrome_interface_factory.h" | 206 #include "chrome/browser/chromeos/chrome_interface_factory.h" |
| 207 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" | 207 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" |
| 208 #include "chrome/browser/chromeos/file_manager/app_id.h" | 208 #include "chrome/browser/chromeos/file_manager/app_id.h" |
| 209 #include "chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.
h" | 209 #include "chrome/browser/chromeos/file_system_provider/fileapi/backend_delegate.
h" |
| 210 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" | 210 #include "chrome/browser/chromeos/fileapi/file_system_backend.h" |
| 211 #include "chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h" | 211 #include "chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h" |
| 212 #include "chrome/browser/chromeos/login/signin/merge_session_navigation_throttle
.h" | 212 #include "chrome/browser/chromeos/login/signin/merge_session_navigation_throttle
.h" |
| 213 #include "chrome/browser/chromeos/login/signin/merge_session_throttling_utils.h" | 213 #include "chrome/browser/chromeos/login/signin/merge_session_throttling_utils.h" |
| (...skipping 3017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3231 kWebRtcDevSwitchNames, | 3231 kWebRtcDevSwitchNames, |
| 3232 arraysize(kWebRtcDevSwitchNames)); | 3232 arraysize(kWebRtcDevSwitchNames)); |
| 3233 } | 3233 } |
| 3234 } | 3234 } |
| 3235 #endif // defined(ENABLE_WEBRTC) | 3235 #endif // defined(ENABLE_WEBRTC) |
| 3236 | 3236 |
| 3237 std::unique_ptr<content::MemoryCoordinatorDelegate> | 3237 std::unique_ptr<content::MemoryCoordinatorDelegate> |
| 3238 ChromeContentBrowserClient::GetMemoryCoordinatorDelegate() { | 3238 ChromeContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 3239 return memory::ChromeMemoryCoordinatorDelegate::Create(); | 3239 return memory::ChromeMemoryCoordinatorDelegate::Create(); |
| 3240 } | 3240 } |
| OLD | NEW |