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

Unified Diff: chrome/browser/net/passive_log_collector.h

Issue 8896019: Refactor: Extract "InitProxyResolver" to "ProxyScriptDecider". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: do another sync since commitbot failed... Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/net/passive_log_collector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/passive_log_collector.h
===================================================================
--- chrome/browser/net/passive_log_collector.h (revision 113525)
+++ chrome/browser/net/passive_log_collector.h (working copy)
@@ -237,19 +237,19 @@
};
// Specialization of SourceTracker for handling
- // SOURCE_INIT_PROXY_RESOLVER.
- class InitProxyResolverTracker : public SourceTracker {
+ // SOURCE_PROXY_SCRIPT_DECIDER.
+ class ProxyScriptDeciderTracker : public SourceTracker {
public:
static const size_t kMaxNumSources;
static const size_t kMaxGraveyardSize;
- InitProxyResolverTracker();
+ ProxyScriptDeciderTracker();
private:
virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
SourceInfo* out_info) OVERRIDE;
- DISALLOW_COPY_AND_ASSIGN(InitProxyResolverTracker);
+ DISALLOW_COPY_AND_ASSIGN(ProxyScriptDeciderTracker);
};
// Tracks the log entries for the last seen SOURCE_SPDY_SESSION.
@@ -447,7 +447,7 @@
SocketTracker socket_tracker_;
RequestTracker url_request_tracker_;
RequestTracker socket_stream_tracker_;
- InitProxyResolverTracker init_proxy_resolver_tracker_;
+ ProxyScriptDeciderTracker proxy_script_decider_tracker_;
SpdySessionTracker spdy_session_tracker_;
DNSRequestTracker dns_request_tracker_;
DNSJobTracker dns_job_tracker_;
« no previous file with comments | « no previous file | chrome/browser/net/passive_log_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698