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

Side by Side Diff: chrome/browser/geolocation/geolocation_permission_context.cc

Issue 2898663002: Implement feature policy checks in the browser process (Closed)
Patch Set: Implement feature policy checks in the browser process Created 3 years, 6 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 #include "chrome/browser/geolocation/geolocation_permission_context.h" 5 #include "chrome/browser/geolocation/geolocation_permission_context.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 8 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
9 #include "chrome/browser/permissions/permission_request_id.h" 9 #include "chrome/browser/permissions/permission_request_id.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "content/public/browser/browser_thread.h" 11 #include "content/public/browser/browser_thread.h"
12 #include "content/public/browser/render_frame_host.h" 12 #include "content/public/browser/render_frame_host.h"
13 #include "content/public/browser/web_contents.h" 13 #include "content/public/browser/web_contents.h"
14 #include "device/geolocation/geolocation_provider.h" 14 #include "device/geolocation/geolocation_provider.h"
15 #include "url/origin.h" 15 #include "url/origin.h"
16 16
17 GeolocationPermissionContext::GeolocationPermissionContext(Profile* profile) 17 GeolocationPermissionContext::GeolocationPermissionContext(Profile* profile)
18 : PermissionContextBase(profile, 18 : PermissionContextBase(profile,
19 CONTENT_SETTINGS_TYPE_GEOLOCATION), 19 CONTENT_SETTINGS_TYPE_GEOLOCATION,
20 blink::WebFeaturePolicyFeature::kGeolocation),
20 extensions_context_(profile) {} 21 extensions_context_(profile) {}
21 22
22 GeolocationPermissionContext::~GeolocationPermissionContext() { 23 GeolocationPermissionContext::~GeolocationPermissionContext() {
23 } 24 }
24 25
25 void GeolocationPermissionContext::DecidePermission( 26 void GeolocationPermissionContext::DecidePermission(
26 content::WebContents* web_contents, 27 content::WebContents* web_contents,
27 const PermissionRequestID& id, 28 const PermissionRequestID& id,
28 const GURL& requesting_origin, 29 const GURL& requesting_origin,
29 const GURL& embedding_origin, 30 const GURL& embedding_origin,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 84
84 if (allowed) { 85 if (allowed) {
85 device::GeolocationProvider::GetInstance() 86 device::GeolocationProvider::GetInstance()
86 ->UserDidOptIntoLocationServices(); 87 ->UserDidOptIntoLocationServices();
87 } 88 }
88 } 89 }
89 90
90 bool GeolocationPermissionContext::IsRestrictedToSecureOrigins() const { 91 bool GeolocationPermissionContext::IsRestrictedToSecureOrigins() const {
91 return true; 92 return true;
92 } 93 }
OLDNEW
« no previous file with comments | « chrome/browser/background_sync/background_sync_permission_context.cc ('k') | chrome/browser/media/midi_permission_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698