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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 void ExecutePluginActionAtLocation( | 109 void ExecutePluginActionAtLocation( |
110 const gfx::Point& location, | 110 const gfx::Point& location, |
111 const blink::WebPluginAction& action) override; | 111 const blink::WebPluginAction& action) override; |
112 RenderViewHostDelegate* GetDelegate() const override; | 112 RenderViewHostDelegate* GetDelegate() const override; |
113 int GetEnabledBindings() const override; | 113 int GetEnabledBindings() const override; |
114 SiteInstanceImpl* GetSiteInstance() const override; | 114 SiteInstanceImpl* GetSiteInstance() const override; |
115 bool IsRenderViewLive() const override; | 115 bool IsRenderViewLive() const override; |
116 void NotifyMoveOrResizeStarted() override; | 116 void NotifyMoveOrResizeStarted() override; |
117 void SetWebUIProperty(const std::string& name, | 117 void SetWebUIProperty(const std::string& name, |
118 const std::string& value) override; | 118 const std::string& value) override; |
119 void Zoom(PageZoom zoom) override; | |
120 void SyncRendererPrefs() override; | 119 void SyncRendererPrefs() override; |
121 WebPreferences GetWebkitPreferences() override; | 120 WebPreferences GetWebkitPreferences() override; |
122 void UpdateWebkitPreferences(const WebPreferences& prefs) override; | 121 void UpdateWebkitPreferences(const WebPreferences& prefs) override; |
123 void OnWebkitPreferencesChanged() override; | 122 void OnWebkitPreferencesChanged() override; |
124 void SelectWordAroundCaret() override; | 123 void SelectWordAroundCaret() override; |
125 | 124 |
126 // RenderProcessHostObserver implementation | 125 // RenderProcessHostObserver implementation |
127 void RenderProcessReady(RenderProcessHost* host) override; | 126 void RenderProcessReady(RenderProcessHost* host) override; |
128 void RenderProcessExited(RenderProcessHost* host, | 127 void RenderProcessExited(RenderProcessHost* host, |
129 base::TerminationStatus status, | 128 base::TerminationStatus status, |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 bool render_view_ready_on_process_launch_; | 340 bool render_view_ready_on_process_launch_; |
342 | 341 |
343 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 342 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
344 | 343 |
345 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 344 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
346 }; | 345 }; |
347 | 346 |
348 } // namespace content | 347 } // namespace content |
349 | 348 |
350 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 349 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |