blob: 5c0edc7e065defe07e90c0c5c5f52a124442d428 (
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
|
// Copyright 2014 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 "ios/chrome/test/testing_application_context.h"
#include "base/logging.h"
#include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
TestingApplicationContext::TestingApplicationContext()
: application_locale_("en"), local_state_(nullptr) {
DCHECK(!GetApplicationContext());
SetApplicationContext(this);
}
TestingApplicationContext::~TestingApplicationContext() {
DCHECK_EQ(this, GetApplicationContext());
SetApplicationContext(nullptr);
}
void TestingApplicationContext::SetLocalState(PrefService* local_state) {
DCHECK(thread_checker_.CalledOnValidThread());
local_state_ = local_state;
}
// static
TestingApplicationContext* TestingApplicationContext::GetGlobal() {
return static_cast<TestingApplicationContext*>(GetApplicationContext());
}
PrefService* TestingApplicationContext::GetLocalState() {
DCHECK(thread_checker_.CalledOnValidThread());
return local_state_;
}
net::URLRequestContextGetter*
TestingApplicationContext::GetSystemURLRequestContext() {
DCHECK(thread_checker_.CalledOnValidThread());
return ios::GetChromeBrowserProvider()->GetSystemURLRequestContext();
}
const std::string& TestingApplicationContext::GetApplicationLocale() {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(!application_locale_.empty());
return application_locale_;
}
|