| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 #include "components/crash/content/browser/crash_handler_host_linux.h" | 269 #include "components/crash/content/browser/crash_handler_host_linux.h" |
| 270 #endif | 270 #endif |
| 271 | 271 |
| 272 #if defined(OS_ANDROID) | 272 #if defined(OS_ANDROID) |
| 273 #include "chrome/browser/android/chrome_context_util.h" | 273 #include "chrome/browser/android/chrome_context_util.h" |
| 274 #include "chrome/browser/android/devtools_manager_delegate_android.h" | 274 #include "chrome/browser/android/devtools_manager_delegate_android.h" |
| 275 #include "chrome/browser/android/ntp/new_tab_page_url_handler.h" | 275 #include "chrome/browser/android/ntp/new_tab_page_url_handler.h" |
| 276 #include "chrome/browser/android/service_tab_launcher.h" | 276 #include "chrome/browser/android/service_tab_launcher.h" |
| 277 #include "chrome/browser/android/tab_android.h" | 277 #include "chrome/browser/android/tab_android.h" |
| 278 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" | 278 #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h" |
| 279 #include "components/payments/payment_request.mojom.h" | 279 #include "components/payments/content/payment_request.mojom.h" |
| 280 #include "content/public/browser/android/java_interfaces.h" | 280 #include "content/public/browser/android/java_interfaces.h" |
| 281 #include "ui/base/ui_base_paths.h" | 281 #include "ui/base/ui_base_paths.h" |
| 282 #else | 282 #else |
| 283 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h" | 283 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h" |
| 284 #endif | 284 #endif |
| 285 | 285 |
| 286 #if defined(TOOLKIT_VIEWS) | 286 #if defined(TOOLKIT_VIEWS) |
| 287 #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" | 287 #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" |
| 288 #endif | 288 #endif |
| 289 | 289 |
| (...skipping 3254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3544 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 3544 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 3545 return variations::GetVariationParamValue( | 3545 return variations::GetVariationParamValue( |
| 3546 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; | 3546 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; |
| 3547 } | 3547 } |
| 3548 | 3548 |
| 3549 // static | 3549 // static |
| 3550 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( | 3550 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( |
| 3551 const storage::QuotaSettings* settings) { | 3551 const storage::QuotaSettings* settings) { |
| 3552 g_default_quota_settings = settings; | 3552 g_default_quota_settings = settings; |
| 3553 } | 3553 } |
| OLD | NEW |