| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 | 441 |
| 442 std::unique_ptr<MemoryCoordinatorDelegate> | 442 std::unique_ptr<MemoryCoordinatorDelegate> |
| 443 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 443 ContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 444 return std::unique_ptr<MemoryCoordinatorDelegate>(); | 444 return std::unique_ptr<MemoryCoordinatorDelegate>(); |
| 445 } | 445 } |
| 446 | 446 |
| 447 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { | 447 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { |
| 448 return nullptr; | 448 return nullptr; |
| 449 } | 449 } |
| 450 | 450 |
| 451 std::unique_ptr<base::TaskScheduler::InitParams> |
| 452 ContentBrowserClient::GetTaskSchedulerInitParams() { |
| 453 return nullptr; |
| 454 } |
| 455 |
| 451 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { | 456 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { |
| 452 return false; | 457 return false; |
| 453 } | 458 } |
| 454 | 459 |
| 455 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 460 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 456 return false; | 461 return false; |
| 457 } | 462 } |
| 458 | 463 |
| 459 } // namespace content | 464 } // namespace content |
| OLD | NEW |