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

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

Issue 2464233002: Experiment with redirecting all BrowserThreads (but UI/IO) to TaskScheduler (Closed)
Patch Set: Add ResetGlobalsForTesting() and fix shutdown state in unittests Created 4 years, 1 month 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
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 "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/guid.h" 8 #include "base/guid.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "content/public/browser/client_certificate_delegate.h" 10 #include "content/public/browser/client_certificate_delegate.h"
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( 419 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay(
420 const std::string& name) { 420 const std::string& name) {
421 return nullptr; 421 return nullptr;
422 } 422 }
423 423
424 std::unique_ptr<MemoryCoordinatorDelegate> 424 std::unique_ptr<MemoryCoordinatorDelegate>
425 ContentBrowserClient::GetMemoryCoordinatorDelegate() { 425 ContentBrowserClient::GetMemoryCoordinatorDelegate() {
426 return std::unique_ptr<MemoryCoordinatorDelegate>(); 426 return std::unique_ptr<MemoryCoordinatorDelegate>();
427 } 427 }
428 428
429 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
430 return false;
431 }
432
429 } // namespace content 433 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698