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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelper.java

Issue 11186010: Update geolocation infobar to handle Android system settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Failed to upload Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
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();
+}

Powered by Google App Engine
This is Rietveld 408576698