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

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 2916323004: Expose GetLoggingFileName in ContentBrowserClient. (Closed)
Patch Set: Cleanup per review Created 3 years, 6 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 "chrome/browser/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 3597 matching lines...) Expand 10 before | Expand all | Expand 10 after
3608 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 3608 RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
3609 return variations::GetVariationParamValue( 3609 return variations::GetVariationParamValue(
3610 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; 3610 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true";
3611 } 3611 }
3612 3612
3613 // static 3613 // static
3614 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( 3614 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting(
3615 const storage::QuotaSettings* settings) { 3615 const storage::QuotaSettings* settings) {
3616 g_default_quota_settings = settings; 3616 g_default_quota_settings = settings;
3617 } 3617 }
3618
3619 base::FilePath ChromeContentBrowserClient::GetLoggingFileName() {
Robert Sesek 2017/06/05 23:22:48 Place in order with the .h
Greg K 2017/06/05 23:53:04 Done.
3620 return logging::GetLogFileName();
3621 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698