diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 08:08:07 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 08:08:07 +0000 |
commit | d9b1478d27afcf589cce7520c19269fe7d1f69c5 (patch) | |
tree | 90ad5387f00309a5bce138b2b45be599a9a79fd5 /net/tools/hresolv | |
parent | d41381fc0ab7d1b63b9c5a2e6a0d1fd89f1a1b48 (diff) | |
download | chromium_src-d9b1478d27afcf589cce7520c19269fe7d1f69c5.zip chromium_src-d9b1478d27afcf589cce7520c19269fe7d1f69c5.tar.gz chromium_src-d9b1478d27afcf589cce7520c19269fe7d1f69c5.tar.bz2 |
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
Diffstat (limited to 'net/tools/hresolv')
-rw-r--r-- | net/tools/hresolv/hresolv.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/tools/hresolv/hresolv.cc b/net/tools/hresolv/hresolv.cc index f092703..0adc30a 100644 --- a/net/tools/hresolv/hresolv.cc +++ b/net/tools/hresolv/hresolv.cc @@ -1,4 +1,4 @@ -// 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. @@ -27,6 +27,7 @@ #include "base/condition_variable.h" #include "base/file_path.h" #include "base/file_util.h" +#include "base/message_loop.h" #include "base/string_util.h" #include "base/thread.h" #include "base/time.h" @@ -185,7 +186,7 @@ class DelayedResolve : public base::RefCounted<DelayedResolve> { invoker_(invoker), ALLOW_THIS_IN_INITIALIZER_LIST( io_callback_(this, &DelayedResolve::OnResolveComplete)) { - } + } void Start() { net::CompletionCallback* callback = (is_async_) ? &io_callback_ : NULL; |