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

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

Issue 2827523003: Move BrowsingDataRemover to content/ (Closed)
Patch Set: Addressed comments. 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
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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 305
306 SpeechRecognitionManagerDelegate* 306 SpeechRecognitionManagerDelegate*
307 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { 307 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() {
308 return nullptr; 308 return nullptr;
309 } 309 }
310 310
311 net::NetLog* ContentBrowserClient::GetNetLog() { 311 net::NetLog* ContentBrowserClient::GetNetLog() {
312 return nullptr; 312 return nullptr;
313 } 313 }
314 314
315 bool ContentBrowserClient::MayDeleteHistory(BrowserContext* browser_context) {
316 return true;
317 }
318
315 base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { 319 base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() {
316 return base::FilePath(); 320 return base::FilePath();
317 } 321 }
318 322
319 std::string ContentBrowserClient::GetDefaultDownloadName() { 323 std::string ContentBrowserClient::GetDefaultDownloadName() {
320 return std::string(); 324 return std::string();
321 } 325 }
322 326
323 base::FilePath ContentBrowserClient::GetShaderDiskCacheDirectory() { 327 base::FilePath ContentBrowserClient::GetShaderDiskCacheDirectory() {
324 return base::FilePath(); 328 return base::FilePath();
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 459
456 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { 460 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() {
457 return false; 461 return false;
458 } 462 }
459 463
460 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 464 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
461 return false; 465 return false;
462 } 466 }
463 467
464 } // namespace content 468 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698