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; |
212 virtual void SelectWordAroundCaret() OVERRIDE; | 213 virtual void SelectWordAroundCaret() OVERRIDE; |
213 | 214 |
214 #if defined(OS_ANDROID) | 215 #if defined(OS_ANDROID) |
215 virtual void ActivateNearestFindResult(int request_id, | 216 virtual void ActivateNearestFindResult(int request_id, |
216 float x, | 217 float x, |
217 float y) OVERRIDE; | 218 float y) OVERRIDE; |
218 virtual void RequestFindMatchRects(int current_version) OVERRIDE; | 219 virtual void RequestFindMatchRects(int current_version) OVERRIDE; |
219 #endif | 220 #endif |
220 | 221 |
221 void set_delegate(RenderViewHostDelegate* d) { | 222 void set_delegate(RenderViewHostDelegate* d) { |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 648 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
648 }; | 649 }; |
649 | 650 |
650 #if defined(COMPILER_MSVC) | 651 #if defined(COMPILER_MSVC) |
651 #pragma warning(pop) | 652 #pragma warning(pop) |
652 #endif | 653 #endif |
653 | 654 |
654 } // namespace content | 655 } // namespace content |
655 | 656 |
656 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 657 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |