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

Unified Diff: chrome/browser/io_thread.h

Issue 2698143004: Add ongoing events to net-export log when logging starts (Closed)
Patch Set: Added/improved some comments Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | chrome/browser/io_thread.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.h
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
index 5bf834ad3917b3f93a9337726cec701d151a9a7e..c579e365b043da773611042cb56db24b9f050f2c 100644
--- a/chrome/browser/io_thread.h
+++ b/chrome/browser/io_thread.h
@@ -224,9 +224,14 @@ class IOThread : public content::BrowserThreadDelegate {
// Handles changing to On The Record mode, discarding confidential data.
void ChangedToOnTheRecord();
- // Returns a getter for the URLRequestContext. Only called on the UI thread.
+ // Returns a getter for the system URLRequestContext. Only called on the UI
+ // thread.
net::URLRequestContextGetter* system_url_request_context_getter();
+ // Returns a getter for the proxy script fetcher URLRequestContext. Only
+ // called on the UI thread.
+ net::URLRequestContextGetter* proxy_script_fetcher_context_getter();
eroman 2017/02/21 22:14:23 This is only used by NetExportUI. Instead of expo
wangyix1 2017/02/22 01:28:18 Done.
+
// Clears the host cache. Intended to be used to prevent exposing recently
// visited sites on about:net-internals/#dns and about:dns pages. Must be
// called on the IO thread. If |host_filter| is not null, only hosts matched
@@ -397,6 +402,9 @@ class IOThread : public content::BrowserThreadDelegate {
scoped_refptr<net::URLRequestContextGetter>
system_url_request_context_getter_;
+ scoped_refptr<net::URLRequestContextGetter>
+ proxy_script_fetcher_context_getter_;
+
// True if QUIC is allowed by policy.
bool is_quic_allowed_by_policy_;
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | chrome/browser/io_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698