blob: 7d5d97e5fb9d25968b148be70ba7f2e1fb751eb8 (
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
|
// 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 "chrome/browser/android/mock_google_location_settings_helper.h"
bool MockGoogleLocationSettingsHelper::master_location_enabled = false;
bool MockGoogleLocationSettingsHelper::google_apps_location_enabled = false;
bool MockGoogleLocationSettingsHelper::was_google_location_settings_called
= false;
// Factory function
GoogleLocationSettingsHelper* GoogleLocationSettingsHelper::Create() {
return new MockGoogleLocationSettingsHelper();
}
MockGoogleLocationSettingsHelper::MockGoogleLocationSettingsHelper()
: GoogleLocationSettingsHelper() {
}
MockGoogleLocationSettingsHelper::~MockGoogleLocationSettingsHelper() {
}
void MockGoogleLocationSettingsHelper::SetLocationStatus(
bool master, bool google_apps) {
master_location_enabled = master;
google_apps_location_enabled = google_apps;
}
std::string MockGoogleLocationSettingsHelper::GetAcceptButtonLabel() {
return google_apps_location_enabled ? "Allow" : "Settings";
}
void MockGoogleLocationSettingsHelper::ShowGoogleLocationSettings() {
was_google_location_settings_called = true;
}
bool MockGoogleLocationSettingsHelper::IsGoogleAppsLocationSettingEnabled() {
return google_apps_location_enabled;
}
bool MockGoogleLocationSettingsHelper::IsMasterLocationSettingEnabled() {
return master_location_enabled;
}
bool MockGoogleLocationSettingsHelper::WasGoogleLocationSettingsCalled() {
return was_google_location_settings_called;
}
|