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

Side by Side Diff: chrome/browser/geolocation/chrome_geolocation_permission_context_android.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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_GEOLOCATION_CHROME_GEOLOCATION_PERMISSION_CONTEXT_ANDROID _H_ 5 #ifndef CHROME_BROWSER_GEOLOCATION_CHROME_GEOLOCATION_PERMISSION_CONTEXT_ANDROID _H_
6 #define CHROME_BROWSER_GEOLOCATION_CHROME_GEOLOCATION_PERMISSION_CONTEXT_ANDROID _H_ 6 #define CHROME_BROWSER_GEOLOCATION_CHROME_GEOLOCATION_PERMISSION_CONTEXT_ANDROID _H_
7 7
8 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h" 8 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h"
9 9
10 class GoogleLocationSettingsHelper;
10 11
11 // Android-specific geolocation permission flow, taking into account the 12 // Android-specific geolocation permission flow, taking into account the
12 // Google Location Settings, if available. 13 // Google Location Settings, if available.
13 class ChromeGeolocationPermissionContextAndroid 14 class ChromeGeolocationPermissionContextAndroid
14 : public ChromeGeolocationPermissionContext { 15 : public ChromeGeolocationPermissionContext {
15 public: 16 public:
16 explicit ChromeGeolocationPermissionContextAndroid(Profile* profile); 17 explicit ChromeGeolocationPermissionContextAndroid(Profile* profile);
17 18
18 private: 19 private:
19 friend class ChromeGeolocationPermissionContext; 20 friend class ChromeGeolocationPermissionContext;
20 21
21 virtual ~ChromeGeolocationPermissionContextAndroid(); 22 virtual ~ChromeGeolocationPermissionContextAndroid();
22 23
23 // ChromeGeolocationPermissionContext implementation: 24 // ChromeGeolocationPermissionContext implementation:
24 virtual void DecidePermission( 25 virtual void DecidePermission(
25 int render_process_id, 26 int render_process_id,
26 int render_view_id, 27 int render_view_id,
27 int bridge_id, 28 int bridge_id,
28 const GURL& requesting_frame, 29 const GURL& requesting_frame,
29 const GURL& embedder, 30 const GURL& embedder,
30 base::Callback<void(bool)> callback) OVERRIDE; 31 base::Callback<void(bool)> callback) OVERRIDE;
31 32
33 virtual void PermissionDecided(int render_process_id,
34 int render_view_id,
35 int bridge_id,
36 const GURL& requesting_frame,
37 const GURL& embedder,
38 base::Callback<void(bool)> callback,
39 bool allowed) OVERRIDE;
40
41 scoped_ptr<GoogleLocationSettingsHelper> google_location_settings_helper_;
42
32 DISALLOW_COPY_AND_ASSIGN(ChromeGeolocationPermissionContextAndroid); 43 DISALLOW_COPY_AND_ASSIGN(ChromeGeolocationPermissionContextAndroid);
33 }; 44 };
34 45
35 #endif // CHROME_BROWSER_GEOLOCATION_CHROME_GEOLOCATION_PERMISSION_CONTEXT_ANDR OID_H_ 46 #endif // CHROME_BROWSER_GEOLOCATION_CHROME_GEOLOCATION_PERMISSION_CONTEXT_ANDR OID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698