| 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 | 383 |
| 384 #if defined(USE_EXTERNAL_POPUP_MENU) | 384 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 385 void DidHideExternalPopupMenu(); | 385 void DidHideExternalPopupMenu(); |
| 386 #endif | 386 #endif |
| 387 | 387 |
| 388 // IPC::Sender | 388 // IPC::Sender |
| 389 bool Send(IPC::Message* msg) override; | 389 bool Send(IPC::Message* msg) override; |
| 390 | 390 |
| 391 // IPC::Listener | 391 // IPC::Listener |
| 392 bool OnMessageReceived(const IPC::Message& msg) override; | 392 bool OnMessageReceived(const IPC::Message& msg) override; |
| 393 void OnAssociatedInterfaceRequest( |
| 394 const std::string& interface_name, |
| 395 mojo::ScopedInterfaceEndpointHandle handle) override; |
| 393 | 396 |
| 394 // RenderFrame implementation: | 397 // RenderFrame implementation: |
| 395 RenderView* GetRenderView() override; | 398 RenderView* GetRenderView() override; |
| 396 RenderAccessibility* GetRenderAccessibility() override; | 399 RenderAccessibility* GetRenderAccessibility() override; |
| 397 int GetRoutingID() override; | 400 int GetRoutingID() override; |
| 398 blink::WebLocalFrame* GetWebFrame() override; | 401 blink::WebLocalFrame* GetWebFrame() override; |
| 399 WebPreferences& GetWebkitPreferences() override; | 402 WebPreferences& GetWebkitPreferences() override; |
| 400 int ShowContextMenu(ContextMenuClient* client, | 403 int ShowContextMenu(ContextMenuClient* client, |
| 401 const ContextMenuParams& params) override; | 404 const ContextMenuParams& params) override; |
| 402 void CancelContextMenu(int request_id) override; | 405 void CancelContextMenu(int request_id) override; |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 remote_associated_interfaces_; | 1291 remote_associated_interfaces_; |
| 1289 | 1292 |
| 1290 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1293 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1291 | 1294 |
| 1292 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1295 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1293 }; | 1296 }; |
| 1294 | 1297 |
| 1295 } // namespace content | 1298 } // namespace content |
| 1296 | 1299 |
| 1297 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1300 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |