| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/threading/thread.h" | 8 #include "base/threading/thread.h" |
| 9 #include "net/http/http_cache.h" | 9 #include "net/http/http_cache.h" |
| 10 #include "net/url_request/url_request_context.h" | 10 #include "net/url_request/url_request_context.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 webkit_blob::BlobStorageController* blob_storage_controller() const { | 37 webkit_blob::BlobStorageController* blob_storage_controller() const { |
| 38 return blob_storage_controller_.get(); | 38 return blob_storage_controller_.get(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 fileapi::FileSystemContext* file_system_context() const { | 41 fileapi::FileSystemContext* file_system_context() const { |
| 42 return file_system_context_.get(); | 42 return file_system_context_.get(); |
| 43 } | 43 } |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 ~TestShellRequestContext(); | 46 virtual ~TestShellRequestContext(); |
| 47 | 47 |
| 48 void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode, | 48 void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode, |
| 49 bool no_proxy); | 49 bool no_proxy); |
| 50 | 50 |
| 51 net::URLRequestContextStorage storage_; | 51 net::URLRequestContextStorage storage_; |
| 52 scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_; | 52 scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_; |
| 53 scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 53 scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H_ | 56 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H_ |
| OLD | NEW |