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

Side by Side Diff: chrome/browser/android/google_location_settings_helper.cc

Issue 440123002: Remove unused methods from GoogleLocationSettingsHelper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/android/google_location_settings_helper.h"
6
7 // Temporary stubs for a 3 way patch
8
9 std::string GoogleLocationSettingsHelper::GetAcceptButtonLabel(bool allow) {
10 return std::string();
11 }
12
13 bool GoogleLocationSettingsHelper::IsAllowLabel() {
14 return false;
15 }
16
17 void GoogleLocationSettingsHelper::ShowGoogleLocationSettings() {
18 }
19
20 bool GoogleLocationSettingsHelper::IsMasterLocationSettingEnabled() {
21 return false;
22 }
23
24 bool GoogleLocationSettingsHelper::IsGoogleAppsLocationSettingEnabled() {
25 return false;
26 }
27
28 bool GoogleLocationSettingsHelper::IsSystemLocationEnabled() {
29 return IsMasterLocationSettingEnabled() &&
30 IsGoogleAppsLocationSettingEnabled();
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698