| 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_TEST_SHELL_REQUEST_CONTEXT_H__ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H__ |
| 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H__ | 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H__ |
| 7 | 7 |
| 8 #include "net/http/http_cache.h" | 8 #include "net/http/http_cache.h" |
| 9 #include "net/url_request/url_request_context.h" | 9 #include "net/url_request/url_request_context.h" |
| 10 | 10 |
| 11 // A basic URLRequestContext that only provides an in-memory cookie store. | 11 // A basic URLRequestContext that only provides an in-memory cookie store. |
| 12 class TestShellRequestContext : public URLRequestContext { | 12 class TestShellRequestContext : public URLRequestContext { |
| 13 public: | 13 public: |
| 14 // Use an in-memory cache | 14 // Use an in-memory cache |
| 15 TestShellRequestContext(); | 15 TestShellRequestContext(); |
| 16 | 16 |
| 17 // Use an on-disk cache at the specified location. Optionally, use the cache | 17 // Use an on-disk cache at the specified location. Optionally, use the cache |
| 18 // in playback or record mode. | 18 // in playback or record mode. |
| 19 TestShellRequestContext(const std::wstring& cache_path, | 19 TestShellRequestContext(const std::wstring& cache_path, |
| 20 net::HttpCache::Mode cache_mode, | 20 net::HttpCache::Mode cache_mode, |
| 21 bool no_proxy); | 21 bool no_proxy); |
| 22 | 22 |
| 23 ~TestShellRequestContext(); | 23 ~TestShellRequestContext(); |
| 24 | 24 |
| 25 virtual const std::string& GetUserAgent(const GURL& url) const; |
| 26 |
| 25 private: | 27 private: |
| 26 void Init(const std::wstring& cache_path, net::HttpCache::Mode cache_mode, | 28 void Init(const std::wstring& cache_path, net::HttpCache::Mode cache_mode, |
| 27 bool no_proxy); | 29 bool no_proxy); |
| 28 }; | 30 }; |
| 29 | 31 |
| 30 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H__ | 32 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H__ |
| 31 | 33 |
| OLD | NEW |