blob: b954c70bb98293afcb4e712bf4abd170e865347b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/test/test_browser_context.h"
#include "base/file_path.h"
#include "base/test/null_task_runner.h"
#include "content/public/test/mock_resource_context.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_getter.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/quota/special_storage_policy.h"
namespace {
class TestContextURLRequestContextGetter : public net::URLRequestContextGetter {
public:
explicit TestContextURLRequestContextGetter(net::URLRequestContext* context)
: context_(context),
null_task_runner_(new base::NullTaskRunner) {
}
virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE {
return context_;
}
virtual scoped_refptr<base::SingleThreadTaskRunner>
GetNetworkTaskRunner() const OVERRIDE {
return null_task_runner_;
}
private:
virtual ~TestContextURLRequestContextGetter() {}
net::URLRequestContext* context_;
scoped_refptr<base::SingleThreadTaskRunner> null_task_runner_;
};
} // namespace
namespace content {
TestBrowserContext::TestBrowserContext() {
EXPECT_TRUE(browser_context_dir_.CreateUniqueTempDir());
}
TestBrowserContext::~TestBrowserContext() {
}
FilePath TestBrowserContext::TakePath() {
return browser_context_dir_.Take();
}
void TestBrowserContext::SetSpecialStoragePolicy(
quota::SpecialStoragePolicy* policy) {
special_storage_policy_ = policy;
}
FilePath TestBrowserContext::GetPath() {
return browser_context_dir_.path();
}
bool TestBrowserContext::IsOffTheRecord() const {
return false;
}
DownloadManagerDelegate* TestBrowserContext::GetDownloadManagerDelegate() {
return NULL;
}
net::URLRequestContextGetter* TestBrowserContext::GetRequestContext() {
if (!request_context_.get()) {
request_context_ = new TestContextURLRequestContextGetter(
GetResourceContext()->GetRequestContext());
}
return request_context_.get();
}
net::URLRequestContextGetter*
TestBrowserContext::GetRequestContextForRenderProcess(int renderer_child_id) {
return NULL;
}
net::URLRequestContextGetter* TestBrowserContext::GetMediaRequestContext() {
return NULL;
}
net::URLRequestContextGetter*
TestBrowserContext::GetMediaRequestContextForRenderProcess(
int renderer_child_id) {
return NULL;
}
net::URLRequestContextGetter*
TestBrowserContext::GetMediaRequestContextForStoragePartition(
const FilePath& partition_path,
bool in_memory) {
return NULL;
}
ResourceContext* TestBrowserContext::GetResourceContext() {
if (!resource_context_.get())
resource_context_.reset(new MockResourceContext());
return resource_context_.get();
}
GeolocationPermissionContext*
TestBrowserContext::GetGeolocationPermissionContext() {
return NULL;
}
SpeechRecognitionPreferences*
TestBrowserContext::GetSpeechRecognitionPreferences() {
return NULL;
}
quota::SpecialStoragePolicy* TestBrowserContext::GetSpecialStoragePolicy() {
return special_storage_policy_.get();
}
} // namespace content
|