| 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 #ifndef NET_COOKIES_COOKIE_STORE_UNITTEST_H_ | 5 #ifndef NET_COOKIES_COOKIE_STORE_UNITTEST_H_ |
| 6 #define NET_COOKIES_COOKIE_STORE_UNITTEST_H_ | 6 #define NET_COOKIES_COOKIE_STORE_UNITTEST_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "base/location.h" | 13 #include "base/location.h" |
| 14 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
| 15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 16 #include "base/strings/string_tokenizer.h" | 16 #include "base/strings/string_tokenizer.h" |
| 17 #include "base/thread_task_runner_handle.h" | |
| 18 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 18 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "net/cookies/cookie_monster.h" | 19 #include "net/cookies/cookie_monster.h" |
| 20 #include "net/cookies/cookie_store.h" | 20 #include "net/cookies/cookie_store.h" |
| 21 #include "net/cookies/cookie_store_test_callbacks.h" | 21 #include "net/cookies/cookie_store_test_callbacks.h" |
| 22 #include "net/cookies/cookie_store_test_helpers.h" | 22 #include "net/cookies/cookie_store_test_helpers.h" |
| 23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
| 24 #include "url/gurl.h" | 24 #include "url/gurl.h" |
| 25 | 25 |
| 26 #if defined(OS_IOS) | 26 #if defined(OS_IOS) |
| 27 #include "base/ios/ios_util.h" | 27 #include "base/ios/ios_util.h" |
| 28 #endif | 28 #endif |
| (...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1408 OverwritePersistentCookie, | 1408 OverwritePersistentCookie, |
| 1409 CookieOrdering, | 1409 CookieOrdering, |
| 1410 GetAllCookiesAsync, | 1410 GetAllCookiesAsync, |
| 1411 DeleteCookieAsync, | 1411 DeleteCookieAsync, |
| 1412 DeleteCanonicalCookieAsync, | 1412 DeleteCanonicalCookieAsync, |
| 1413 DeleteSessionCookie); | 1413 DeleteSessionCookie); |
| 1414 | 1414 |
| 1415 } // namespace net | 1415 } // namespace net |
| 1416 | 1416 |
| 1417 #endif // NET_COOKIES_COOKIE_STORE_UNITTEST_H_ | 1417 #endif // NET_COOKIES_COOKIE_STORE_UNITTEST_H_ |
| OLD | NEW |