From d9b1478d27afcf589cce7520c19269fe7d1f69c5 Mon Sep 17 00:00:00 2001 From: "thestig@chromium.org" Date: Thu, 15 Apr 2010 08:08:07 +0000 Subject: Cleanup: Explicitly add a bunch of missing includes. BUG=none TEST=none Review URL: http://codereview.chromium.org/1623014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44635 0039d316-1c4b-4281-b951-d872f2087c98 --- net/proxy/single_threaded_proxy_resolver.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'net/proxy/single_threaded_proxy_resolver.cc') diff --git a/net/proxy/single_threaded_proxy_resolver.cc b/net/proxy/single_threaded_proxy_resolver.cc index 81e3f1b..4009e2a 100644 --- a/net/proxy/single_threaded_proxy_resolver.cc +++ b/net/proxy/single_threaded_proxy_resolver.cc @@ -1,9 +1,10 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/proxy/single_threaded_proxy_resolver.h" +#include "base/message_loop.h" #include "base/thread.h" #include "net/base/net_log.h" #include "net/base/net_errors.h" @@ -23,7 +24,7 @@ class PurgeMemoryTask : public base::RefCountedThreadSafe { ProxyResolver* resolver_; }; -} +} // namespace // SingleThreadedProxyResolver::SetPacScriptTask ------------------------------ @@ -240,7 +241,8 @@ int SingleThreadedProxyResolver::GetProxyForURL(const GURL& url, job->Start(); } else { // Otherwise the job will get started eventually by ProcessPendingJobs(). - job->net_log()->BeginEvent(NetLog::TYPE_WAITING_FOR_SINGLE_PROXY_RESOLVER_THREAD); + job->net_log()->BeginEvent( + NetLog::TYPE_WAITING_FOR_SINGLE_PROXY_RESOLVER_THREAD); } // Completion will be notified through |callback|, unless the caller cancels -- cgit v1.1