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