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

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

Issue 2576243003: Add an experiment to redirect DOMStorageTaskRunner to TaskScheduler. (Closed)
Patch Set: fix compile Created 4 years 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 "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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 434
435 std::unique_ptr<MemoryCoordinatorDelegate> 435 std::unique_ptr<MemoryCoordinatorDelegate>
436 ContentBrowserClient::GetMemoryCoordinatorDelegate() { 436 ContentBrowserClient::GetMemoryCoordinatorDelegate() {
437 return std::unique_ptr<MemoryCoordinatorDelegate>(); 437 return std::unique_ptr<MemoryCoordinatorDelegate>();
438 } 438 }
439 439
440 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { 440 ::rappor::RapporService* ContentBrowserClient::GetRapporService() {
441 return nullptr; 441 return nullptr;
442 } 442 }
443 443
444 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() {
445 return false;
446 }
447
444 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 448 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
445 return false; 449 return false;
446 } 450 }
447 451
448 } // namespace content 452 } // 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