OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_TOOLS_TEST_SHELL_SIMPLE_RESOURCE_LOADER_BRIDGE_H__ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_SIMPLE_RESOURCE_LOADER_BRIDGE_H__ |
6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_RESOURCE_LOADER_BRIDGE_H__ | 6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_RESOURCE_LOADER_BRIDGE_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 // May only be called after Init. | 31 // May only be called after Init. |
32 static void SetCookie(const GURL& url, | 32 static void SetCookie(const GURL& url, |
33 const GURL& first_party_for_cookies, | 33 const GURL& first_party_for_cookies, |
34 const std::string& cookie); | 34 const std::string& cookie); |
35 static std::string GetCookies(const GURL& url, | 35 static std::string GetCookies(const GURL& url, |
36 const GURL& first_party_for_cookies); | 36 const GURL& first_party_for_cookies); |
37 static bool EnsureIOThread(); | 37 static bool EnsureIOThread(); |
38 static void SetAcceptAllCookies(bool accept_all_cookies); | 38 static void SetAcceptAllCookies(bool accept_all_cookies); |
39 | 39 |
40 // This method should only be called after Init(), and before Shutdown(). | 40 // These methods should only be called after Init(), and before |
| 41 // Shutdown(). The MessageLoops get replaced upon each call to |
| 42 // Init(), and destroyed upon a call to ShutDown(). |
41 static scoped_refptr<base::MessageLoopProxy> GetCacheThread(); | 43 static scoped_refptr<base::MessageLoopProxy> GetCacheThread(); |
| 44 static scoped_refptr<base::MessageLoopProxy> GetIoThread(); |
42 }; | 45 }; |
43 | 46 |
44 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_RESOURCE_LOADER_BRIDGE_H__ | 47 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_RESOURCE_LOADER_BRIDGE_H__ |
OLD | NEW |