| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 // RenderViewHost implementation. | 92 // RenderViewHost implementation. |
| 93 bool Send(IPC::Message* msg) override; | 93 bool Send(IPC::Message* msg) override; |
| 94 RenderWidgetHostImpl* GetWidget() const override; | 94 RenderWidgetHostImpl* GetWidget() const override; |
| 95 RenderProcessHost* GetProcess() const override; | 95 RenderProcessHost* GetProcess() const override; |
| 96 int GetRoutingID() const override; | 96 int GetRoutingID() const override; |
| 97 RenderFrameHost* GetMainFrame() override; | 97 RenderFrameHost* GetMainFrame() override; |
| 98 void AllowBindings(int binding_flags) override; | 98 void AllowBindings(int binding_flags) override; |
| 99 void ClearFocusedElement() override; | 99 void ClearFocusedElement() override; |
| 100 bool IsFocusedElementEditable() override; | 100 bool IsFocusedElementEditable() override; |
| 101 void CopyImageAt(int x, int y) override; | |
| 102 void SaveImageAt(int x, int y) override; | |
| 103 void DirectoryEnumerationFinished( | 101 void DirectoryEnumerationFinished( |
| 104 int request_id, | 102 int request_id, |
| 105 const std::vector<base::FilePath>& files) override; | 103 const std::vector<base::FilePath>& files) override; |
| 106 void DisableScrollbarsForThreshold(const gfx::Size& size) override; | 104 void DisableScrollbarsForThreshold(const gfx::Size& size) override; |
| 107 void DragSourceEndedAt(int client_x, | 105 void DragSourceEndedAt(int client_x, |
| 108 int client_y, | 106 int client_y, |
| 109 int screen_x, | 107 int screen_x, |
| 110 int screen_y, | 108 int screen_y, |
| 111 blink::WebDragOperation operation) override; | 109 blink::WebDragOperation operation) override; |
| 112 void DragSourceSystemDragEnded() override; | 110 void DragSourceSystemDragEnded() override; |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 bool render_view_ready_on_process_launch_; | 412 bool render_view_ready_on_process_launch_; |
| 415 | 413 |
| 416 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 414 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
| 417 | 415 |
| 418 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 416 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 419 }; | 417 }; |
| 420 | 418 |
| 421 } // namespace content | 419 } // namespace content |
| 422 | 420 |
| 423 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 421 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |