| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 RenderProcessHost* GetProcess() const override; | 94 RenderProcessHost* GetProcess() const override; |
| 95 int GetRoutingID() const override; | 95 int GetRoutingID() const override; |
| 96 RenderFrameHost* GetMainFrame() override; | 96 RenderFrameHost* GetMainFrame() override; |
| 97 void AllowBindings(int binding_flags) override; | 97 void AllowBindings(int binding_flags) override; |
| 98 void ClearFocusedElement() override; | 98 void ClearFocusedElement() override; |
| 99 bool IsFocusedElementEditable() override; | 99 bool IsFocusedElementEditable() override; |
| 100 void DirectoryEnumerationFinished( | 100 void DirectoryEnumerationFinished( |
| 101 int request_id, | 101 int request_id, |
| 102 const std::vector<base::FilePath>& files) override; | 102 const std::vector<base::FilePath>& files) override; |
| 103 void DisableScrollbarsForThreshold(const gfx::Size& size) override; | 103 void DisableScrollbarsForThreshold(const gfx::Size& size) override; |
| 104 void DragSourceEndedAt(int client_x, | |
| 105 int client_y, | |
| 106 int screen_x, | |
| 107 int screen_y, | |
| 108 blink::WebDragOperation operation) override; | |
| 109 void DragSourceSystemDragEnded() override; | |
| 110 void EnableAutoResize(const gfx::Size& min_size, | 104 void EnableAutoResize(const gfx::Size& min_size, |
| 111 const gfx::Size& max_size) override; | 105 const gfx::Size& max_size) override; |
| 112 void DisableAutoResize(const gfx::Size& new_size) override; | 106 void DisableAutoResize(const gfx::Size& new_size) override; |
| 113 void EnablePreferredSizeMode() override; | 107 void EnablePreferredSizeMode() override; |
| 114 void ExecuteMediaPlayerActionAtLocation( | 108 void ExecuteMediaPlayerActionAtLocation( |
| 115 const gfx::Point& location, | 109 const gfx::Point& location, |
| 116 const blink::WebMediaPlayerAction& action) override; | 110 const blink::WebMediaPlayerAction& action) override; |
| 117 void ExecutePluginActionAtLocation( | 111 void ExecutePluginActionAtLocation( |
| 118 const gfx::Point& location, | 112 const gfx::Point& location, |
| 119 const blink::WebPluginAction& action) override; | 113 const blink::WebPluginAction& action) override; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 bool render_view_ready_on_process_launch_; | 349 bool render_view_ready_on_process_launch_; |
| 356 | 350 |
| 357 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 351 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
| 358 | 352 |
| 359 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 353 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 360 }; | 354 }; |
| 361 | 355 |
| 362 } // namespace content | 356 } // namespace content |
| 363 | 357 |
| 364 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 358 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |