OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 package org.chromium.chrome.browser; |
| 6 |
| 7 import org.chromium.base.CalledByNative; |
| 8 |
| 9 /** |
| 10 * Helper interface to read the Google Apps location setting to update the infob
ar button label. |
| 11 * Also, starts the Android Google Apps location settings activity upon request. |
| 12 */ |
| 13 public interface GoogleLocationSettingsHelper { |
| 14 |
| 15 @CalledByNative |
| 16 public String getInfoBarAllowTextFromLocationSetting(); |
| 17 |
| 18 @CalledByNative |
| 19 public boolean isMasterLocationSettingEnabled(); |
| 20 |
| 21 @CalledByNative |
| 22 public boolean isGoogleAppsLocationSettingEnabled(); |
| 23 |
| 24 @CalledByNative |
| 25 public void startGoogleLocationSettingsActivity(); |
| 26 } |
OLD | NEW |