| OLD | NEW |
| 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/time.h" | 10 #include "base/time/time.h" |
| 11 #include "googleurl/src/gurl.h" | |
| 12 #include "net/cookies/cookie_constants.h" | 11 #include "net/cookies/cookie_constants.h" |
| 13 #include "net/cookies/cookie_util.h" | 12 #include "net/cookies/cookie_util.h" |
| 14 #include "net/cookies/parsed_cookie.h" | 13 #include "net/cookies/parsed_cookie.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 #include "url/gurl.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), |
| 21 cookies_(cookies) { | 21 cookies_(cookies) { |
| 22 } | 22 } |
| 23 | 23 |
| 24 LoadedCallbackTask::~LoadedCallbackTask() {} | 24 LoadedCallbackTask::~LoadedCallbackTask() {} |
| 25 | 25 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |