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 /media | |
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 'media')
-rw-r--r-- | media/base/download_rate_monitor.h | 1 | ||||
-rw-r--r-- | media/base/download_rate_monitor_unittest.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/media/base/download_rate_monitor.h b/media/base/download_rate_monitor.h index e3b29dd..4fca328 100644 --- a/media/base/download_rate_monitor.h +++ b/media/base/download_rate_monitor.h @@ -7,7 +7,6 @@ #include <deque> -#include "base/bind.h" #include "base/callback.h" #include "base/time.h" #include "media/base/media_export.h" diff --git a/media/base/download_rate_monitor_unittest.cc b/media/base/download_rate_monitor_unittest.cc index 496d3a0..321ad63 100644 --- a/media/base/download_rate_monitor_unittest.cc +++ b/media/base/download_rate_monitor_unittest.cc @@ -4,6 +4,8 @@ #include "media/base/download_rate_monitor.h" +#include "base/bind.h" +#include "base/bind_helpers.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" |