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 /net | |
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 'net')
-rw-r--r-- | net/base/cookie_store_test_helpers.cc | 1 | ||||
-rw-r--r-- | net/base/cookie_store_test_helpers.h | 2 | ||||
-rw-r--r-- | net/base/default_origin_bound_cert_store.h | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/net/base/cookie_store_test_helpers.cc b/net/base/cookie_store_test_helpers.cc index afc5c67..add1483 100644 --- a/net/base/cookie_store_test_helpers.cc +++ b/net/base/cookie_store_test_helpers.cc @@ -4,6 +4,7 @@ #include "net/base/cookie_store_test_helpers.h" +#include "base/bind.h" #include "base/message_loop.h" namespace net { diff --git a/net/base/cookie_store_test_helpers.h b/net/base/cookie_store_test_helpers.h index de9f575..3474655 100644 --- a/net/base/cookie_store_test_helpers.h +++ b/net/base/cookie_store_test_helpers.h @@ -11,7 +11,7 @@ #include <string> #include <vector> -#include "base/bind.h" +#include "base/callback_forward.h" #include "testing/gtest/include/gtest/gtest.h" namespace net { diff --git a/net/base/default_origin_bound_cert_store.h b/net/base/default_origin_bound_cert_store.h index f5e0394..8f9a3e3 100644 --- a/net/base/default_origin_bound_cert_store.h +++ b/net/base/default_origin_bound_cert_store.h @@ -10,7 +10,7 @@ #include <string> #include <vector> -#include "base/bind.h" +#include "base/callback_forward.h" #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" #include "base/synchronization/lock.h" @@ -22,7 +22,7 @@ class Task; namespace net { // This class is the system for storing and retrieving origin bound certs. -// Modelled after the CookieMonster class, it has an in-memory cert store, +// Modeled after the CookieMonster class, it has an in-memory cert store, // and synchronizes origin bound certs to an optional permanent storage that // implements the PersistentStore interface. The use case is described in // http://balfanz.github.com/tls-obc-spec/draft-balfanz-tls-obc-00.html |