summaryrefslogtreecommitdiffstats
path: root/chrome_frame/metrics_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/metrics_service.cc')
-rw-r--r--chrome_frame/metrics_service.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/chrome_frame/metrics_service.cc b/chrome_frame/metrics_service.cc
index 461862f..659cd36 100644
--- a/chrome_frame/metrics_service.cc
+++ b/chrome_frame/metrics_service.cc
@@ -154,11 +154,8 @@ class ChromeFrameUploadRequestContext : public URLRequestContext {
net::ProxyService::CreateSystemProxyConfigService(NULL, NULL);
DCHECK(proxy_config_service);
- const size_t kNetLogBound = 50u;
- net_log_.reset(new net::CapturingNetLog(kNetLogBound));
-
proxy_service_ = net::ProxyService::CreateUsingSystemProxyResolver(
- proxy_config_service, 0, net_log_.get());
+ proxy_config_service, 0, NULL);
DCHECK(proxy_service_);
ssl_config_service_ = new net::SSLConfigServiceDefaults;
@@ -193,7 +190,6 @@ class ChromeFrameUploadRequestContext : public URLRequestContext {
private:
std::string user_agent_;
MessageLoop* io_loop_;
- scoped_ptr<net::NetLog> net_log_;
scoped_ptr<net::URLSecurityManager> url_security_manager_;
};