Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: net/cookies/cookie_monster_store_test.cc

Issue 18054009: Use a direct include of time headers in net/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/cookies/cookie_monster.h ('k') | net/cookies/cookie_monster_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/cookies/cookie_monster_store_test.h" 5 #include "net/cookies/cookie_monster_store_test.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/strings/stringprintf.h" 9 #include "base/strings/stringprintf.h"
10 #include "base/time.h" 10 #include "base/time/time.h"
11 #include "googleurl/src/gurl.h" 11 #include "googleurl/src/gurl.h"
12 #include "net/cookies/cookie_constants.h" 12 #include "net/cookies/cookie_constants.h"
13 #include "net/cookies/cookie_util.h" 13 #include "net/cookies/cookie_util.h"
14 #include "net/cookies/parsed_cookie.h" 14 #include "net/cookies/parsed_cookie.h"
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 16
17 namespace net { 17 namespace net {
18 LoadedCallbackTask::LoadedCallbackTask(LoadedCallback loaded_callback, 18 LoadedCallbackTask::LoadedCallbackTask(LoadedCallback loaded_callback,
19 std::vector<CanonicalCookie*> cookies) 19 std::vector<CanonicalCookie*> cookies)
20 : loaded_callback_(loaded_callback), 20 : loaded_callback_(loaded_callback),
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 COOKIE_PRIORITY_DEFAULT); 218 COOKIE_PRIORITY_DEFAULT);
219 store->AddCookie(cc); 219 store->AddCookie(cc);
220 } 220 }
221 221
222 return new CookieMonster(store.get(), NULL); 222 return new CookieMonster(store.get(), NULL);
223 } 223 }
224 224
225 MockSimplePersistentCookieStore::~MockSimplePersistentCookieStore() {} 225 MockSimplePersistentCookieStore::~MockSimplePersistentCookieStore() {}
226 226
227 } // namespace net 227 } // namespace net
OLDNEW
« no previous file with comments | « net/cookies/cookie_monster.h ('k') | net/cookies/cookie_monster_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698