diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-19 03:15:59 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-19 03:15:59 +0000 |
commit | 2041cf34db4b3b9e43f9c63a57975798c0677ad7 (patch) | |
tree | 5caa67abfd19b51f124c17ac0c6a68eca0d9e860 /net/http | |
parent | cf03da1cccdc0bae0ced1dcf599c8a74324a1577 (diff) | |
download | chromium_src-2041cf34db4b3b9e43f9c63a57975798c0677ad7.zip chromium_src-2041cf34db4b3b9e43f9c63a57975798c0677ad7.tar.gz chromium_src-2041cf34db4b3b9e43f9c63a57975798c0677ad7.tar.bz2 |
Pulled out Callback code into base/callback.h. This is the first step towards redoing the Callback interfaces.
Added and removed includes as needed.
BUG=35223
TEST=trybots
Review URL: http://codereview.chromium.org/646061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_cache.cc | 1 | ||||
-rw-r--r-- | net/http/http_transaction.h | 2 | ||||
-rw-r--r-- | net/http/http_transaction_unittest.h | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc index 52b9ebfb..5ae3fd1 100644 --- a/net/http/http_cache.cc +++ b/net/http/http_cache.cc @@ -12,6 +12,7 @@ #include <unistd.h> #endif +#include "base/callback.h" #include "base/format_macros.h" #include "base/message_loop.h" #include "base/pickle.h" diff --git a/net/http/http_transaction.h b/net/http/http_transaction.h index 9dfd658..2f8ddba 100644 --- a/net/http/http_transaction.h +++ b/net/http/http_transaction.h @@ -5,6 +5,8 @@ #ifndef NET_HTTP_HTTP_TRANSACTION_H_ #define NET_HTTP_HTTP_TRANSACTION_H_ +#include <string> + #include "net/base/completion_callback.h" #include "net/base/load_states.h" diff --git a/net/http/http_transaction_unittest.h b/net/http/http_transaction_unittest.h index cffde7a..a884a07 100644 --- a/net/http/http_transaction_unittest.h +++ b/net/http/http_transaction_unittest.h @@ -10,6 +10,7 @@ #include <algorithm> #include <string> +#include "base/callback.h" #include "base/compiler_specific.h" #include "base/message_loop.h" #include "base/string_util.h" |