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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 virtual void NotifyMoveOrResizeStarted() OVERRIDE; | 202 virtual void NotifyMoveOrResizeStarted() OVERRIDE; |
203 virtual void SetWebUIProperty(const std::string& name, | 203 virtual void SetWebUIProperty(const std::string& name, |
204 const std::string& value) OVERRIDE; | 204 const std::string& value) OVERRIDE; |
205 virtual void Zoom(PageZoom zoom) OVERRIDE; | 205 virtual void Zoom(PageZoom zoom) OVERRIDE; |
206 virtual void SyncRendererPrefs() OVERRIDE; | 206 virtual void SyncRendererPrefs() OVERRIDE; |
207 virtual WebPreferences GetWebkitPreferences() OVERRIDE; | 207 virtual WebPreferences GetWebkitPreferences() OVERRIDE; |
208 virtual void UpdateWebkitPreferences( | 208 virtual void UpdateWebkitPreferences( |
209 const WebPreferences& prefs) OVERRIDE; | 209 const WebPreferences& prefs) OVERRIDE; |
210 virtual void GetAudioOutputControllers( | 210 virtual void GetAudioOutputControllers( |
211 const GetAudioOutputControllersCallback& callback) const OVERRIDE; | 211 const GetAudioOutputControllersCallback& callback) const OVERRIDE; |
212 virtual void SetWebUIHandle(mojo::ScopedMessagePipeHandle handle) OVERRIDE; | |
213 virtual void SelectWordAroundCaret() OVERRIDE; | 212 virtual void SelectWordAroundCaret() OVERRIDE; |
214 | 213 |
215 #if defined(OS_ANDROID) | 214 #if defined(OS_ANDROID) |
216 virtual void ActivateNearestFindResult(int request_id, | 215 virtual void ActivateNearestFindResult(int request_id, |
217 float x, | 216 float x, |
218 float y) OVERRIDE; | 217 float y) OVERRIDE; |
219 virtual void RequestFindMatchRects(int current_version) OVERRIDE; | 218 virtual void RequestFindMatchRects(int current_version) OVERRIDE; |
220 #endif | 219 #endif |
221 | 220 |
222 void set_delegate(RenderViewHostDelegate* d) { | 221 void set_delegate(RenderViewHostDelegate* d) { |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 647 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
649 }; | 648 }; |
650 | 649 |
651 #if defined(COMPILER_MSVC) | 650 #if defined(COMPILER_MSVC) |
652 #pragma warning(pop) | 651 #pragma warning(pop) |
653 #endif | 652 #endif |
654 | 653 |
655 } // namespace content | 654 } // namespace content |
656 | 655 |
657 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 656 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |