OLD | NEW |
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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_IMPL_H_ |
6 #define CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_IMPL_H_ | 6 #define CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_IMPL_H_ |
7 | 7 |
8 #include "base/id_map.h" | 8 #include "base/id_map.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "content/browser/permissions/permission_service_context.h" | 11 #include "content/browser/permissions/permission_service_context.h" |
12 #include "content/common/permission_service.mojom.h" | 12 #include "content/common/permission_service.mojom.h" |
13 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 13 #include "mojo/public/cpp/bindings/binding.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 enum class PermissionType; | 17 enum class PermissionType; |
18 | 18 |
19 // Implements the PermissionService Mojo interface. | 19 // Implements the PermissionService Mojo interface. |
20 // This service can be created from a RenderFrameHost or a RenderProcessHost. | 20 // This service can be created from a RenderFrameHost or a RenderProcessHost. |
21 // It is owned by a PermissionServiceContext. | 21 // It is owned by a PermissionServiceContext. |
22 // It receives at PermissionServiceContext instance when created which allows it | 22 // It receives at PermissionServiceContext instance when created which allows it |
23 // to have some information about the current context. That enables the service | 23 // to have some information about the current context. That enables the service |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 PermissionServiceContext* context_; | 113 PermissionServiceContext* context_; |
114 mojo::Binding<PermissionService> binding_; | 114 mojo::Binding<PermissionService> binding_; |
115 base::WeakPtrFactory<PermissionServiceImpl> weak_factory_; | 115 base::WeakPtrFactory<PermissionServiceImpl> weak_factory_; |
116 | 116 |
117 DISALLOW_COPY_AND_ASSIGN(PermissionServiceImpl); | 117 DISALLOW_COPY_AND_ASSIGN(PermissionServiceImpl); |
118 }; | 118 }; |
119 | 119 |
120 } // namespace content | 120 } // namespace content |
121 | 121 |
122 #endif // CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_IMPL_H_ | 122 #endif // CONTENT_BROWSER_PERMISSIONS_PERMISSION_SERVICE_IMPL_H_ |
OLD | NEW |