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

Side by Side Diff: public/platform/modules/permissions/WebPermissionClient.h

Issue 1228873002: doesnt link in component build (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 WebPermissionClient_h 5 #ifndef WebPermissionClient_h
6 #define WebPermissionClient_h 6 #define WebPermissionClient_h
7 7
8 #include "public/platform/WebCallbacks.h" 8 #include "public/platform/WebCallbacks.h"
9 #include "public/platform/WebCommon.h"
9 #include "public/platform/modules/permissions/WebPermissionStatus.h" 10 #include "public/platform/modules/permissions/WebPermissionStatus.h"
10 #include "public/platform/modules/permissions/WebPermissionType.h" 11 #include "public/platform/modules/permissions/WebPermissionType.h"
11 12
12 namespace blink { 13 namespace blink {
13 14
14 using WebPermissionQueryCallback = WebCallbacks<WebPermissionStatus, void>; 15 using WebPermissionQueryCallback = WebCallbacks<WebPermissionStatus, void>;
15 16
17 class ExecutionContext;
16 class WebPermissionObserver; 18 class WebPermissionObserver;
17 class WebURL; 19 class WebURL;
18 20
19 // This client is expected to do general permission handling. From simple 21 // This client is expected to do general permission handling. From simple
20 // permission query to requesting new permissions. 22 // permission query to requesting new permissions.
21 class WebPermissionClient { 23 class WebPermissionClient {
22 public: 24 public:
25
26 virtual void requestDurablePermission(const WebURL&, WebPermissionQueryCallb ack*) { }
27
23 // Query the permission status of a given origin for a specific permission. 28 // Query the permission status of a given origin for a specific permission.
24 virtual void queryPermission(WebPermissionType, const WebURL&, WebPermission QueryCallback*) { } 29 virtual void queryPermission(WebPermissionType, const WebURL&, WebPermission QueryCallback*) { }
25 30
26 // Listen for permission changes for a given origin and inform the observer 31 // Listen for permission changes for a given origin and inform the observer
27 // when they happen. The observer is not owned by the WebPermissionClient. 32 // when they happen. The observer is not owned by the WebPermissionClient.
28 // The client should expect stopListening() to be called when the observer 33 // The client should expect stopListening() to be called when the observer
29 // will be destroyed. 34 // will be destroyed.
30 virtual void startListening(WebPermissionType, const WebURL&, WebPermissionO bserver*) { } 35 virtual void startListening(WebPermissionType, const WebURL&, WebPermissionO bserver*) { }
31 36
32 // Stop listening to all the permission changes associated with the given 37 // Stop listening to all the permission changes associated with the given
33 // observer. 38 // observer.
34 virtual void stopListening(WebPermissionObserver*) { } 39 virtual void stopListening(WebPermissionObserver*) { }
35 40
41 #if BLINK_IMPLEMENTATION
42 static WebPermissionClient* get(ExecutionContext*);
43 #endif
44
36 protected: 45 protected:
37 virtual ~WebPermissionClient() { } 46 virtual ~WebPermissionClient() { }
38 }; 47 };
39 48
40 } // namespace blink 49 } // namespace blink
41 50
42 #endif // WebPermissionClient_h 51 #endif // WebPermissionClient_h
OLDNEW
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698