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

Side by Side Diff: chrome/browser/geolocation/geolocation_permission_context_extensions.h

Issue 2110343002: Reintroduce plumbing for user gesture into permission system. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 4 years, 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_ 5 #ifndef CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_
6 #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_ 6 #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "components/content_settings/core/common/content_settings.h" 10 #include "components/content_settings/core/common/content_settings.h"
(...skipping 12 matching lines...) Expand all
23 explicit GeolocationPermissionContextExtensions(Profile* profile); 23 explicit GeolocationPermissionContextExtensions(Profile* profile);
24 ~GeolocationPermissionContextExtensions(); 24 ~GeolocationPermissionContextExtensions();
25 25
26 // Returns true if the permission request was handled. In which case, 26 // Returns true if the permission request was handled. In which case,
27 // |permission_set| will be set to true if the permission changed, and the 27 // |permission_set| will be set to true if the permission changed, and the
28 // permission has been set to |new_permission|. 28 // permission has been set to |new_permission|.
29 bool DecidePermission(content::WebContents* web_contents, 29 bool DecidePermission(content::WebContents* web_contents,
30 const PermissionRequestID& request_id, 30 const PermissionRequestID& request_id,
31 int bridge_id, 31 int bridge_id,
32 const GURL& requesting_frame, 32 const GURL& requesting_frame,
33 bool user_gesture,
33 const base::Callback<void(ContentSetting)>& callback, 34 const base::Callback<void(ContentSetting)>& callback,
34 bool* permission_set, 35 bool* permission_set,
35 bool* new_permission); 36 bool* new_permission);
36 37
37 // Returns true if the cancellation request was handled. 38 // Returns true if the cancellation request was handled.
38 bool CancelPermissionRequest(content::WebContents* web_contents, 39 bool CancelPermissionRequest(content::WebContents* web_contents,
39 int bridge_id); 40 int bridge_id);
40 41
41 private: 42 private:
42 #if defined(ENABLE_EXTENSIONS) 43 #if defined(ENABLE_EXTENSIONS)
43 Profile* profile_; 44 Profile* profile_;
44 #endif 45 #endif
45 46
46 DISALLOW_COPY_AND_ASSIGN(GeolocationPermissionContextExtensions); 47 DISALLOW_COPY_AND_ASSIGN(GeolocationPermissionContextExtensions);
47 }; 48 };
48 49
49 #endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_ H_ 50 #endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698