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

Side by Side 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: Missed removing some diffs 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
bulach 2012/10/23 13:06:26 nit: remove \n
Ramya 2012/10/23 21:57:14 Done.
14 public interface GoogleLocationSettingsHelper {
15
16 @CalledByNative
17 public String getInfoBarAllowTextFromLocationSetting();
18
19 @CalledByNative
20 public boolean isGoogleAppsLocationSettingEnabled();
21
22 @CalledByNative
23 public void startGoogleLocationSettingsActivity();
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698