OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 int GetEnabledBindings() const override; | 186 int GetEnabledBindings() const override; |
187 void BlockRequestsForFrame() override; | 187 void BlockRequestsForFrame() override; |
188 void ResumeBlockedRequestsForFrame() override; | 188 void ResumeBlockedRequestsForFrame() override; |
189 void DisableBeforeUnloadHangMonitorForTesting() override; | 189 void DisableBeforeUnloadHangMonitorForTesting() override; |
190 bool IsBeforeUnloadHangMonitorDisabledForTesting() override; | 190 bool IsBeforeUnloadHangMonitorDisabledForTesting() override; |
191 | 191 |
192 // mojom::FrameHost | 192 // mojom::FrameHost |
193 void GetInterfaceProvider( | 193 void GetInterfaceProvider( |
194 service_manager::mojom::InterfaceProviderRequest interfaces) override; | 194 service_manager::mojom::InterfaceProviderRequest interfaces) override; |
195 | 195 |
| 196 void RequestKeyLock(const std::vector<std::string>& key_codes, |
| 197 const RequestKeyLockCallback& callback) override; |
| 198 |
| 199 void CancelKeyLock(const CancelKeyLockCallback& callback) override; |
| 200 |
196 // IPC::Sender | 201 // IPC::Sender |
197 bool Send(IPC::Message* msg) override; | 202 bool Send(IPC::Message* msg) override; |
198 | 203 |
199 // IPC::Listener | 204 // IPC::Listener |
200 bool OnMessageReceived(const IPC::Message& msg) override; | 205 bool OnMessageReceived(const IPC::Message& msg) override; |
201 void OnAssociatedInterfaceRequest( | 206 void OnAssociatedInterfaceRequest( |
202 const std::string& interface_name, | 207 const std::string& interface_name, |
203 mojo::ScopedInterfaceEndpointHandle handle) override; | 208 mojo::ScopedInterfaceEndpointHandle handle) override; |
204 | 209 |
205 // BrowserAccessibilityDelegate | 210 // BrowserAccessibilityDelegate |
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 | 1191 |
1187 // NOTE: This must be the last member. | 1192 // NOTE: This must be the last member. |
1188 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1193 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1189 | 1194 |
1190 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1195 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1191 }; | 1196 }; |
1192 | 1197 |
1193 } // namespace content | 1198 } // namespace content |
1194 | 1199 |
1195 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1200 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |