| 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 3414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3425 std::unique_ptr<base::TaskScheduler::InitParams> | 3425 std::unique_ptr<base::TaskScheduler::InitParams> |
| 3426 ChromeContentBrowserClient::GetTaskSchedulerInitParams() { | 3426 ChromeContentBrowserClient::GetTaskSchedulerInitParams() { |
| 3427 return task_scheduler_util::GetBrowserTaskSchedulerInitParamsFromVariations(); | 3427 return task_scheduler_util::GetBrowserTaskSchedulerInitParamsFromVariations(); |
| 3428 } | 3428 } |
| 3429 | 3429 |
| 3430 void ChromeContentBrowserClient:: | 3430 void ChromeContentBrowserClient:: |
| 3431 PerformExperimentalTaskSchedulerRedirections() { | 3431 PerformExperimentalTaskSchedulerRedirections() { |
| 3432 task_scheduler_util::MaybePerformBrowserTaskSchedulerRedirection(); | 3432 task_scheduler_util::MaybePerformBrowserTaskSchedulerRedirection(); |
| 3433 } | 3433 } |
| 3434 | 3434 |
| 3435 base::FilePath ChromeContentBrowserClient::GetLoggingFileName() { |
| 3436 return logging::GetLogFileName(); |
| 3437 } |
| 3438 |
| 3435 // static | 3439 // static |
| 3436 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( | 3440 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( |
| 3437 const storage::QuotaSettings* settings) { | 3441 const storage::QuotaSettings* settings) { |
| 3438 g_default_quota_settings = settings; | 3442 g_default_quota_settings = settings; |
| 3439 } | 3443 } |
| OLD | NEW |