| 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 "content/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/guid.h" | 10 #include "base/guid.h" |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 | 443 |
| 444 std::unique_ptr<MemoryCoordinatorDelegate> | 444 std::unique_ptr<MemoryCoordinatorDelegate> |
| 445 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 445 ContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 446 return std::unique_ptr<MemoryCoordinatorDelegate>(); | 446 return std::unique_ptr<MemoryCoordinatorDelegate>(); |
| 447 } | 447 } |
| 448 | 448 |
| 449 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { | 449 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { |
| 450 return nullptr; | 450 return nullptr; |
| 451 } | 451 } |
| 452 | 452 |
| 453 ::ukm::UkmRecorder* ContentBrowserClient::GetUkmRecorder() { | |
| 454 return nullptr; | |
| 455 } | |
| 456 | |
| 457 std::unique_ptr<base::TaskScheduler::InitParams> | 453 std::unique_ptr<base::TaskScheduler::InitParams> |
| 458 ContentBrowserClient::GetTaskSchedulerInitParams() { | 454 ContentBrowserClient::GetTaskSchedulerInitParams() { |
| 459 return nullptr; | 455 return nullptr; |
| 460 } | 456 } |
| 461 | 457 |
| 462 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { | 458 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { |
| 463 return false; | 459 return false; |
| 464 } | 460 } |
| 465 | 461 |
| 466 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 462 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 467 return false; | 463 return false; |
| 468 } | 464 } |
| 469 | 465 |
| 470 } // namespace content | 466 } // namespace content |
| OLD | NEW |