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
3 // found in the LICENSE file.
5 #ifndef NET_COOKIES_COOKIE_STORE_TEST_CALLBACKS_H_
6 #define NET_COOKIES_COOKIE_STORE_TEST_CALLBACKS_H_
11 #include "net/cookies/cookie_store.h"
20 // Defines common behaviour for the callbacks from GetCookies, SetCookies, etc.
21 // Asserts that the current thread is the expected invocation thread, sends a
22 // quit to the thread in which it was constructed.
23 class CookieCallback
{
25 // Indicates whether the callback has been called.
26 bool did_run() { return did_run_
; }
29 // Constructs a callback that expects to be called in the given thread and
30 // will, upon execution, send a QUIT to the constructing thread.
31 explicit CookieCallback(base::Thread
* run_in_thread
);
33 // Constructs a callback that expects to be called in current thread and will
34 // send a QUIT to the constructing thread.
37 // Tests whether the current thread was the caller's thread.
38 // Sends a QUIT to the constructing thread.
39 void CallbackEpilogue();
43 base::Thread
* run_in_thread_
;
44 base::MessageLoop
* run_in_loop_
;
45 base::MessageLoop
* parent_loop_
;
46 base::MessageLoop
* loop_to_quit_
;
49 // Callback implementations for the asynchronous CookieStore methods.
51 class BoolResultCookieCallback
: public CookieCallback
{
53 BoolResultCookieCallback();
54 explicit BoolResultCookieCallback(base::Thread
* run_in_thread
);
56 void Run(bool result
) {
61 bool result() { return result_
; }
67 class StringResultCookieCallback
: public CookieCallback
{
69 StringResultCookieCallback();
70 explicit StringResultCookieCallback(base::Thread
* run_in_thread
);
72 void Run(const std::string
& result
) {
77 const std::string
& result() { return result_
; }
83 class IntResultCookieCallback
: public CookieCallback
{
85 IntResultCookieCallback();
86 explicit IntResultCookieCallback(base::Thread
* run_in_thread
);
88 void Run(int result
) {
93 int result() { return result_
; }
99 class NoResultCookieCallback
: public CookieCallback
{
101 NoResultCookieCallback();
102 explicit NoResultCookieCallback(base::Thread
* run_in_thread
);
111 #endif // NET_COOKIES_COOKIE_STORE_TEST_CALLBACKS_H_