| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 | 455 |
| 456 std::unique_ptr<MemoryCoordinatorDelegate> | 456 std::unique_ptr<MemoryCoordinatorDelegate> |
| 457 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 457 ContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 458 return std::unique_ptr<MemoryCoordinatorDelegate>(); | 458 return std::unique_ptr<MemoryCoordinatorDelegate>(); |
| 459 } | 459 } |
| 460 | 460 |
| 461 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { | 461 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { |
| 462 return nullptr; | 462 return nullptr; |
| 463 } | 463 } |
| 464 | 464 |
| 465 ::ukm::UkmService* ContentBrowserClient::GetUkmService() { |
| 466 return nullptr; |
| 467 } |
| 468 |
| 465 std::unique_ptr<base::TaskScheduler::InitParams> | 469 std::unique_ptr<base::TaskScheduler::InitParams> |
| 466 ContentBrowserClient::GetTaskSchedulerInitParams() { | 470 ContentBrowserClient::GetTaskSchedulerInitParams() { |
| 467 return nullptr; | 471 return nullptr; |
| 468 } | 472 } |
| 469 | 473 |
| 470 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { | 474 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { |
| 471 return false; | 475 return false; |
| 472 } | 476 } |
| 473 | 477 |
| 474 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 478 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 475 return false; | 479 return false; |
| 476 } | 480 } |
| 477 | 481 |
| 478 } // namespace content | 482 } // namespace content |
| OLD | NEW |