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

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

Issue 6028009: Move base/thread.h to base/threading, fix up callers to use the new location.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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
« no previous file with comments | « webkit/tools/test_shell/simple_resource_loader_bridge.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/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 11
12 class FilePath; 12 class FilePath;
13 13
14 namespace webkit_blob { 14 namespace webkit_blob {
15 class BlobStorageController; 15 class BlobStorageController;
16 } 16 }
17 17
18 // A basic URLRequestContext that only provides an in-memory cookie store. 18 // A basic URLRequestContext that only provides an in-memory cookie store.
(...skipping 16 matching lines...) Expand all
35 35
36 private: 36 private:
37 ~TestShellRequestContext(); 37 ~TestShellRequestContext();
38 38
39 void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode, 39 void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode,
40 bool no_proxy); 40 bool no_proxy);
41 41
42 scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_; 42 scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_;
43 }; 43 };
44 44
45 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H__ 45 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_REQUEST_CONTEXT_H_
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/simple_resource_loader_bridge.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698