diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-21 21:01:21 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-21 21:01:21 +0000 |
commit | a1e41bb29757069588adfbb1ea0fe47b0a6b2237 (patch) | |
tree | 5a6f3418d10eeed97672502561b61da9191d1314 /remoting/base | |
parent | 5d4f7f86104885599e7bb3f9ffae65d68757f828 (diff) | |
download | chromium_src-a1e41bb29757069588adfbb1ea0fe47b0a6b2237.zip chromium_src-a1e41bb29757069588adfbb1ea0fe47b0a6b2237.tar.gz chromium_src-a1e41bb29757069588adfbb1ea0fe47b0a6b2237.tar.bz2 |
base::Bind: Remove includes of base.bind in header files.
BUG=none
TEST=none
R=ajwong
Review URL: http://codereview.chromium.org/8956019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115398 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base')
-rw-r--r-- | remoting/base/scoped_thread_proxy.cc | 2 | ||||
-rw-r--r-- | remoting/base/scoped_thread_proxy.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/remoting/base/scoped_thread_proxy.cc b/remoting/base/scoped_thread_proxy.cc index b526d6af..d1dcc26 100644 --- a/remoting/base/scoped_thread_proxy.cc +++ b/remoting/base/scoped_thread_proxy.cc @@ -4,6 +4,8 @@ #include "remoting/base/scoped_thread_proxy.h" +#include "base/bind.h" + namespace remoting { class ScopedThreadProxy::Core : public base::RefCountedThreadSafe<Core> { diff --git a/remoting/base/scoped_thread_proxy.h b/remoting/base/scoped_thread_proxy.h index 63dcaf8..2ec9b5b 100644 --- a/remoting/base/scoped_thread_proxy.h +++ b/remoting/base/scoped_thread_proxy.h @@ -5,7 +5,7 @@ #ifndef REMOTING_BASE_SCOPED_THREAD_PROXY_H_ #define REMOTING_BASE_SCOPED_THREAD_PROXY_H_ -#include "base/bind.h" +#include "base/callback_forward.h" #include "base/message_loop_proxy.h" namespace remoting { |