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