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

Side by Side Diff: content/browser/permissions/permission_service_context.h

Issue 750633003: Implement HasPermission() method in PermissionService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed comments, switched to use BrowserContext, passing PermissionStatus in callback Created 6 years 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 CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_CONTEXT_H_ 5 #ifndef CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_CONTEXT_H_
6 #define CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_CONTEXT_H_ 6 #define CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_CONTEXT_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "content/public/browser/web_contents_observer.h" 10 #include "content/public/browser/web_contents_observer.h"
11 #include "mojo/public/cpp/bindings/interface_request.h" 11 #include "mojo/public/cpp/bindings/interface_request.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 class PermissionService; 15 class PermissionService;
16 class PermissionServiceImpl; 16 class PermissionServiceImpl;
17 class RenderFrameHost; 17 class RenderFrameHost;
18 class RenderProcessHost;
18 19
19 // Provides information to a PermissionService. It is used by the 20 // Provides information to a PermissionService. It is used by the
20 // PermissionService to handle request permission UI. 21 // PermissionService to handle request permission UI.
21 // There is one PermissionServiceContext per RenderFrameHost/RenderProcessHost 22 // There is one PermissionServiceContext per RenderFrameHost/RenderProcessHost
22 // which owns it. It then owns all PermissionService associated to their owner. 23 // which owns it. It then owns all PermissionService associated to their owner.
23 class PermissionServiceContext : public WebContentsObserver { 24 class PermissionServiceContext : public WebContentsObserver {
24 public: 25 public:
25 explicit PermissionServiceContext(RenderFrameHost* render_frame_host); 26 explicit PermissionServiceContext(RenderFrameHost* render_frame_host);
27 explicit PermissionServiceContext(RenderProcessHost* render_process_host);
26 virtual ~PermissionServiceContext(); 28 virtual ~PermissionServiceContext();
27 29
28 void CreateService(mojo::InterfaceRequest<PermissionService> request); 30 void CreateService(mojo::InterfaceRequest<PermissionService> request);
29 31
30 // Called by a PermissionService identified as |service| when it has a 32 // Called by a PermissionService identified as |service| when it has a
31 // connection error in order to get unregistered and killed. 33 // connection error in order to get unregistered and killed.
32 void ServiceHadConnectionError(PermissionServiceImpl* service); 34 void ServiceHadConnectionError(PermissionServiceImpl* service);
33 35
36 BrowserContext* GetBrowserContext() const;
37
34 private: 38 private:
35 // WebContentsObserver 39 // WebContentsObserver
36 void RenderFrameDeleted(RenderFrameHost* render_frame_host) override; 40 void RenderFrameDeleted(RenderFrameHost* render_frame_host) override;
37 void DidNavigateAnyFrame(RenderFrameHost* render_frame_host, 41 void DidNavigateAnyFrame(RenderFrameHost* render_frame_host,
38 const LoadCommittedDetails& details, 42 const LoadCommittedDetails& details,
39 const FrameNavigateParams& params) override; 43 const FrameNavigateParams& params) override;
40 44
41 void CancelPendingRequests(RenderFrameHost*) const; 45 void CancelPendingRequests(RenderFrameHost*) const;
42 46
43 RenderFrameHost* render_frame_host_; 47 RenderFrameHost* render_frame_host_;
48 RenderProcessHost* render_process_host_;
44 ScopedVector<PermissionServiceImpl> services_; 49 ScopedVector<PermissionServiceImpl> services_;
45 50
46 DISALLOW_COPY_AND_ASSIGN(PermissionServiceContext); 51 DISALLOW_COPY_AND_ASSIGN(PermissionServiceContext);
47 }; 52 };
48 53
49 } // namespace content 54 } // namespace content
50 55
51 #endif // CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_CONTEXT_H_ 56 #endif // CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698