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 #include "content/test/test_browser_context.h" | 5 #include "content/test/test_browser_context.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "content/browser/in_process_webkit/webkit_context.h" | 8 #include "content/browser/in_process_webkit/webkit_context.h" |
9 #include "content/browser/mock_resource_context.h" | 9 #include "content/browser/mock_resource_context.h" |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 } | 23 } |
24 | 24 |
25 SSLHostState* TestBrowserContext::GetSSLHostState() { | 25 SSLHostState* TestBrowserContext::GetSSLHostState() { |
26 return NULL; | 26 return NULL; |
27 } | 27 } |
28 | 28 |
29 DownloadManager* TestBrowserContext::GetDownloadManager() { | 29 DownloadManager* TestBrowserContext::GetDownloadManager() { |
30 return NULL; | 30 return NULL; |
31 } | 31 } |
32 | 32 |
33 bool TestBrowserContext::HasCreatedDownloadManager() const { | |
34 return false; | |
35 } | |
36 | |
37 net::URLRequestContextGetter* TestBrowserContext::GetRequestContext() { | 33 net::URLRequestContextGetter* TestBrowserContext::GetRequestContext() { |
38 return NULL; | 34 return NULL; |
39 } | 35 } |
40 | 36 |
41 net::URLRequestContextGetter* | 37 net::URLRequestContextGetter* |
42 TestBrowserContext::GetRequestContextForRenderProcess(int renderer_child_id) { | 38 TestBrowserContext::GetRequestContextForRenderProcess(int renderer_child_id) { |
43 return NULL; | 39 return NULL; |
44 } | 40 } |
45 | 41 |
46 net::URLRequestContextGetter* TestBrowserContext::GetRequestContextForMedia() { | 42 net::URLRequestContextGetter* TestBrowserContext::GetRequestContextForMedia() { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 return NULL; | 86 return NULL; |
91 } | 87 } |
92 | 88 |
93 ChromeAppCacheService* TestBrowserContext::GetAppCacheService() { | 89 ChromeAppCacheService* TestBrowserContext::GetAppCacheService() { |
94 return NULL; | 90 return NULL; |
95 } | 91 } |
96 | 92 |
97 fileapi::FileSystemContext* TestBrowserContext::GetFileSystemContext() { | 93 fileapi::FileSystemContext* TestBrowserContext::GetFileSystemContext() { |
98 return NULL; | 94 return NULL; |
99 } | 95 } |
OLD | NEW |