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

Side by Side Diff: chrome/browser/background_sync/background_sync_permission_context.cc

Issue 2908133003: Split GetPermissionStatus into GetPermissionStatusForFrame/Worker
Patch Set: Split GetPermissionStatus into GetPermissionStatusForFrame/Worker 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/background_sync/background_sync_permission_context.h" 5 #include "chrome/browser/background_sync/background_sync_permission_context.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "components/content_settings/core/common/content_settings_types.h" 8 #include "components/content_settings/core/common/content_settings_types.h"
9 9
10 BackgroundSyncPermissionContext::BackgroundSyncPermissionContext( 10 BackgroundSyncPermissionContext::BackgroundSyncPermissionContext(
11 Profile* profile) 11 Profile* profile)
12 : PermissionContextBase(profile, 12 : PermissionContextBase(profile,
13 CONTENT_SETTINGS_TYPE_BACKGROUND_SYNC) {} 13 CONTENT_SETTINGS_TYPE_BACKGROUND_SYNC) {}
14 14
15 void BackgroundSyncPermissionContext::CancelPermissionRequest( 15 void BackgroundSyncPermissionContext::CancelPermissionRequest(
16 content::WebContents* web_contents, 16 content::WebContents* web_contents,
17 const PermissionRequestID& id) { 17 const PermissionRequestID& id) {
18 // Background sync permission requests are resolved instantly without 18 // Background sync permission requests are resolved instantly without
19 // prompting the user, there is no way to cancel them. 19 // prompting the user, there is no way to cancel them.
20 NOTREACHED(); 20 NOTREACHED();
21 } 21 }
22 22
23 bool BackgroundSyncPermissionContext::IsAllowedInWorkers() const {
24 return true;
25 }
26
23 void BackgroundSyncPermissionContext::DecidePermission( 27 void BackgroundSyncPermissionContext::DecidePermission(
24 content::WebContents* web_contents, 28 content::WebContents* web_contents,
25 const PermissionRequestID& id, 29 const PermissionRequestID& id,
26 const GURL& requesting_origin, 30 const GURL& requesting_origin,
27 const GURL& embedding_origin, 31 const GURL& embedding_origin,
28 bool user_gesture, 32 bool user_gesture,
29 const BrowserPermissionCallback& callback) { 33 const BrowserPermissionCallback& callback) {
30 // The user should never be prompted to authorize background sync. 34 // The user should never be prompted to authorize background sync.
31 NOTREACHED(); 35 NOTREACHED();
32 } 36 }
33 37
34 bool BackgroundSyncPermissionContext::IsRestrictedToSecureOrigins() const { 38 bool BackgroundSyncPermissionContext::IsRestrictedToSecureOrigins() const {
35 return true; 39 return true;
36 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698