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

Unified Diff: content/public/browser/content_browser_client.h

Issue 2916323004: Expose GetLoggingFileName in ContentBrowserClient. (Closed)
Patch Set: Simplify API Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index e58f1099eba8054b37136f46854907fe59353b47..65bbbf038218db0c2a82f7c18c1e8cdde8f6504b 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -815,6 +815,10 @@ class CONTENT_EXPORT ContentBrowserClient {
// If this returns true, all BrowserThreads (but UI/IO) that support it on
// this platform will experimentally be redirected to TaskScheduler.
virtual bool RedirectNonUINonIOBrowserThreadsToTaskScheduler();
+
+ // Returns the fully qualified path to the log file name, and returns whether
Robert Sesek 2017/06/05 15:20:30 It can't return both of these things.
Greg K 2017/06/05 19:03:31 Done.
+ // or not that succeeded.
+ virtual base::FilePath GetLoggingFileName();
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698