diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-28 05:40:47 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-28 05:40:47 +0000 |
commit | 9da992db7cf42886de7cc16f057fb6a205f3eff1 (patch) | |
tree | 20e1648eda5ae1972312989cba9fc73cc8706192 /net/cookies | |
parent | 7e72e7b3eb04b78828b8d5fd757e3abe191b6829 (diff) | |
download | chromium_src-9da992db7cf42886de7cc16f057fb6a205f3eff1.zip chromium_src-9da992db7cf42886de7cc16f057fb6a205f3eff1.tar.gz chromium_src-9da992db7cf42886de7cc16f057fb6a205f3eff1.tar.bz2 |
Use a direct include of time headers in net/, part 1.
BUG=254986
TEST=none
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/18054009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/cookies')
-rw-r--r-- | net/cookies/canonical_cookie.h | 2 | ||||
-rw-r--r-- | net/cookies/cookie_monster.h | 2 | ||||
-rw-r--r-- | net/cookies/cookie_monster_store_test.cc | 2 | ||||
-rw-r--r-- | net/cookies/cookie_monster_unittest.cc | 2 | ||||
-rw-r--r-- | net/cookies/cookie_store.h | 4 | ||||
-rw-r--r-- | net/cookies/cookie_util.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/net/cookies/canonical_cookie.h b/net/cookies/canonical_cookie.h index 341f58b1..a78eece 100644 --- a/net/cookies/canonical_cookie.h +++ b/net/cookies/canonical_cookie.h @@ -9,7 +9,7 @@ #include <vector> #include "base/basictypes.h" -#include "base/time.h" +#include "base/time/time.h" #include "net/base/net_export.h" #include "net/cookies/cookie_constants.h" #include "net/cookies/cookie_options.h" diff --git a/net/cookies/cookie_monster.h b/net/cookies/cookie_monster.h index e637372..d248f10 100644 --- a/net/cookies/cookie_monster.h +++ b/net/cookies/cookie_monster.h @@ -21,7 +21,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/synchronization/lock.h" -#include "base/time.h" +#include "base/time/time.h" #include "net/base/net_export.h" #include "net/cookies/canonical_cookie.h" #include "net/cookies/cookie_constants.h" diff --git a/net/cookies/cookie_monster_store_test.cc b/net/cookies/cookie_monster_store_test.cc index 7a401f9..7a1b8ad 100644 --- a/net/cookies/cookie_monster_store_test.cc +++ b/net/cookies/cookie_monster_store_test.cc @@ -7,7 +7,7 @@ #include "base/bind.h" #include "base/message_loop.h" #include "base/strings/stringprintf.h" -#include "base/time.h" +#include "base/time/time.h" #include "googleurl/src/gurl.h" #include "net/cookies/cookie_constants.h" #include "net/cookies/cookie_util.h" diff --git a/net/cookies/cookie_monster_unittest.cc b/net/cookies/cookie_monster_unittest.cc index f6e0ae3..21b3fb5 100644 --- a/net/cookies/cookie_monster_unittest.cc +++ b/net/cookies/cookie_monster_unittest.cc @@ -21,7 +21,7 @@ #include "base/strings/string_tokenizer.h" #include "base/strings/stringprintf.h" #include "base/threading/thread.h" -#include "base/time.h" +#include "base/time/time.h" #include "googleurl/src/gurl.h" #include "net/cookies/canonical_cookie.h" #include "net/cookies/cookie_constants.h" diff --git a/net/cookies/cookie_store.h b/net/cookies/cookie_store.h index 27a9f1e..af99637 100644 --- a/net/cookies/cookie_store.h +++ b/net/cookies/cookie_store.h @@ -13,9 +13,9 @@ #include "base/basictypes.h" #include "base/callback.h" #include "base/memory/ref_counted.h" -#include "base/time.h" -#include "net/cookies/cookie_options.h" +#include "base/time/time.h" #include "net/base/net_export.h" +#include "net/cookies/cookie_options.h" class GURL; diff --git a/net/cookies/cookie_util.h b/net/cookies/cookie_util.h index 2995aa0..aaaf27d 100644 --- a/net/cookies/cookie_util.h +++ b/net/cookies/cookie_util.h @@ -7,7 +7,7 @@ #include <string> -#include "base/time.h" +#include "base/time/time.h" #include "net/base/net_export.h" class GURL; |