| Index: chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelper.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelper.java b/chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelper.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b04eb4f34f76d572ba24d4610aabb33285cf9a0e
|
| --- /dev/null
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelper.java
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +package org.chromium.chrome.browser;
|
| +
|
| +import org.chromium.base.CalledByNative;
|
| +
|
| +/**
|
| + * Helper interface to read the Google Apps location setting to update the infobar button label.
|
| + * Also, starts the Android Google Apps location settings activity upon request.
|
| + */
|
| +public interface GoogleLocationSettingsHelper {
|
| +
|
| + @CalledByNative
|
| + public String getInfoBarAcceptLabel();
|
| +
|
| + @CalledByNative
|
| + public boolean isMasterLocationSettingEnabled();
|
| +
|
| + @CalledByNative
|
| + public boolean isGoogleAppsLocationSettingEnabled();
|
| +
|
| + @CalledByNative
|
| + public void startGoogleLocationSettingsActivity();
|
| +}
|
|
|