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

Side by Side Diff: content/test/test_browser_context.cc

Issue 8135017: Refactor downloads into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Incorporated latest rounds of comments from John. Created 9 years, 2 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 | « content/test/test_browser_context.h ('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) 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
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
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 }
OLDNEW
« no previous file with comments | « content/test/test_browser_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698