| 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 "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/guid.h" | 8 #include "base/guid.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 | 439 |
| 440 std::unique_ptr<MemoryCoordinatorDelegate> | 440 std::unique_ptr<MemoryCoordinatorDelegate> |
| 441 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 441 ContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 442 return std::unique_ptr<MemoryCoordinatorDelegate>(); | 442 return std::unique_ptr<MemoryCoordinatorDelegate>(); |
| 443 } | 443 } |
| 444 | 444 |
| 445 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { | 445 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { |
| 446 return nullptr; | 446 return nullptr; |
| 447 } | 447 } |
| 448 | 448 |
| 449 std::unique_ptr<base::TaskSchedulerInitParams> |
| 450 ContentBrowserClient::GetTaskSchedulerInitParams() { |
| 451 return nullptr; |
| 452 } |
| 453 |
| 449 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { | 454 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { |
| 450 return false; | 455 return false; |
| 451 } | 456 } |
| 452 | 457 |
| 453 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 458 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 454 return false; | 459 return false; |
| 455 } | 460 } |
| 456 | 461 |
| 457 } // namespace content | 462 } // namespace content |
| OLD | NEW |