Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: webkit/tools/test_shell/test_shell_request_context.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 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"
11 #include "net/url_request/url_request_context_storage.h" 11 #include "net/url_request/url_request_context_storage.h"
12 12
13 namespace base {
13 class FilePath; 14 class FilePath;
15 }
14 16
15 namespace fileapi { 17 namespace fileapi {
16 class FileSystemContext; 18 class FileSystemContext;
17 } 19 }
18 20
19 namespace webkit_blob { 21 namespace webkit_blob {
20 class BlobStorageController; 22 class BlobStorageController;
21 } 23 }
22 24
23 // A basic net::URLRequestContext that only provides an in-memory cookie store. 25 // A basic net::URLRequestContext that only provides an in-memory cookie store.
24 class TestShellRequestContext : public net::URLRequestContext { 26 class TestShellRequestContext : public net::URLRequestContext {
25 public: 27 public:
26 // Use an in-memory cache 28 // Use an in-memory cache
27 TestShellRequestContext(); 29 TestShellRequestContext();
28 30
29 // Use an on-disk cache at the specified location. Optionally, use the cache 31 // Use an on-disk cache at the specified location. Optionally, use the cache
30 // in playback or record mode. 32 // in playback or record mode.
31 TestShellRequestContext(const FilePath& cache_path, 33 TestShellRequestContext(const base::FilePath& cache_path,
32 net::HttpCache::Mode cache_mode, 34 net::HttpCache::Mode cache_mode,
33 bool no_proxy); 35 bool no_proxy);
34 36
35 virtual ~TestShellRequestContext(); 37 virtual ~TestShellRequestContext();
36 38
37 webkit_blob::BlobStorageController* blob_storage_controller() const { 39 webkit_blob::BlobStorageController* blob_storage_controller() const {
38 return blob_storage_controller_.get(); 40 return blob_storage_controller_.get();
39 } 41 }
40 42
41 fileapi::FileSystemContext* file_system_context() const { 43 fileapi::FileSystemContext* file_system_context() const {
42 return file_system_context_.get(); 44 return file_system_context_.get();
43 } 45 }
44 46
45 private: 47 private:
46 void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode, 48 void Init(const base::FilePath& cache_path, net::HttpCache::Mode cache_mode,
47 bool no_proxy); 49 bool no_proxy);
48 50
49 net::URLRequestContextStorage storage_; 51 net::URLRequestContextStorage storage_;
50 scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_; 52 scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_;
51 scoped_refptr<fileapi::FileSystemContext> file_system_context_; 53 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
52 }; 54 };
53 55
54 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H_ 56 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H_
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_main.cc ('k') | webkit/tools/test_shell/test_shell_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698