| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 // Shuts down this RenderViewHost and deletes it. | 80 // Shuts down this RenderViewHost and deletes it. |
| 81 void ShutdownAndDestroy(); | 81 void ShutdownAndDestroy(); |
| 82 | 82 |
| 83 // RenderViewHost implementation. | 83 // RenderViewHost implementation. |
| 84 bool Send(IPC::Message* msg) override; | 84 bool Send(IPC::Message* msg) override; |
| 85 RenderWidgetHostImpl* GetWidget() const override; | 85 RenderWidgetHostImpl* GetWidget() const override; |
| 86 RenderProcessHost* GetProcess() const override; | 86 RenderProcessHost* GetProcess() const override; |
| 87 int GetRoutingID() const override; | 87 int GetRoutingID() const override; |
| 88 RenderFrameHost* GetMainFrame() override; | 88 RenderFrameHost* GetMainFrame() override; |
| 89 void AllowBindings(int binding_flags) override; | 89 void AllowBindings(int binding_flags) override; |
| 90 void ClearFocusedElement() override; | |
| 91 bool IsFocusedElementEditable() override; | |
| 92 void DirectoryEnumerationFinished( | 90 void DirectoryEnumerationFinished( |
| 93 int request_id, | 91 int request_id, |
| 94 const std::vector<base::FilePath>& files) override; | 92 const std::vector<base::FilePath>& files) override; |
| 95 void DisableScrollbarsForThreshold(const gfx::Size& size) override; | 93 void DisableScrollbarsForThreshold(const gfx::Size& size) override; |
| 96 void EnableAutoResize(const gfx::Size& min_size, | 94 void EnableAutoResize(const gfx::Size& min_size, |
| 97 const gfx::Size& max_size) override; | 95 const gfx::Size& max_size) override; |
| 98 void DisableAutoResize(const gfx::Size& new_size) override; | 96 void DisableAutoResize(const gfx::Size& new_size) override; |
| 99 void EnablePreferredSizeMode() override; | 97 void EnablePreferredSizeMode() override; |
| 100 void ExecuteMediaPlayerActionAtLocation( | 98 void ExecuteMediaPlayerActionAtLocation( |
| 101 const gfx::Point& location, | 99 const gfx::Point& location, |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 bool render_view_ready_on_process_launch_; | 325 bool render_view_ready_on_process_launch_; |
| 328 | 326 |
| 329 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 327 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
| 330 | 328 |
| 331 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 329 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 332 }; | 330 }; |
| 333 | 331 |
| 334 } // namespace content | 332 } // namespace content |
| 335 | 333 |
| 336 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 334 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |