Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 2799433002: Use TaskScheduler::InitParams to initialize TaskScheduler in browser process. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698