| OLD | NEW |
| (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 } | |
| OLD | NEW |