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

Side by Side Diff: chrome/browser/android/google_location_settings_helper.h

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, 1 month 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 #ifndef CHROME_BROWSER_ANDROID_GOOGLE_LOCATION_SETTINGS_HELPER_H_
6 #define CHROME_BROWSER_ANDROID_GOOGLE_LOCATION_SETTINGS_HELPER_H_
7
8 #include "base/android/jni_helper.h"
9 #include "base/android/scoped_java_ref.h"
10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/values.h"
13 #include "chrome/browser/android/google_location_settings_helper_factory.h"
14
15 // This class is needed to fetch the current system location
16 // setting and update the infobar button label based on that information i.e,
17 // display "Allow" if google apps setting is set as enabled else, display
18 // "Settings" with a link to open the system location settings activity.
19 class GoogleLocationSettingsHelper {
20 public:
21 GoogleLocationSettingsHelper();
22 ~GoogleLocationSettingsHelper();
23
24 static void SetGoogleLocationSettingsHelperFactory(
25 GoogleLocationSettingsHelperFactory* factory);
26 std::string GetAcceptButtonLabel();
27 void ShowGoogleLocationSettings();
28 bool IsMasterLocationSettingEnabled();
29 bool IsGoogleAppsLocationSettingEnabled();
30 static bool Register(JNIEnv* env);
31
32 private:
33 base::android::ScopedJavaGlobalRef<jobject>
34 java_google_location_settings_helper_;
35 static GoogleLocationSettingsHelperFactory* helper_factory_;
36
37 DISALLOW_COPY_AND_ASSIGN(GoogleLocationSettingsHelper);
38 };
39
40 #endif // CHROME_BROWSER_ANDROID_GOOGLE_LOCATION_SETTINGS_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/android/google_location_settings_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698