| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 virtual void InsertCSS(const base::string16& frame_xpath, | 196 virtual void InsertCSS(const base::string16& frame_xpath, |
| 197 const std::string& css) OVERRIDE; | 197 const std::string& css) OVERRIDE; |
| 198 virtual bool IsRenderViewLive() const OVERRIDE; | 198 virtual bool IsRenderViewLive() const OVERRIDE; |
| 199 virtual void NotifyContextMenuClosed( | 199 virtual void NotifyContextMenuClosed( |
| 200 const CustomContextMenuContext& context) OVERRIDE; | 200 const CustomContextMenuContext& context) OVERRIDE; |
| 201 virtual void NotifyMoveOrResizeStarted() OVERRIDE; | 201 virtual void NotifyMoveOrResizeStarted() OVERRIDE; |
| 202 virtual void ReloadFrame() OVERRIDE; | 202 virtual void ReloadFrame() OVERRIDE; |
| 203 virtual void SetAltErrorPageURL(const GURL& url) OVERRIDE; | 203 virtual void SetAltErrorPageURL(const GURL& url) OVERRIDE; |
| 204 virtual void SetWebUIProperty(const std::string& name, | 204 virtual void SetWebUIProperty(const std::string& name, |
| 205 const std::string& value) OVERRIDE; | 205 const std::string& value) OVERRIDE; |
| 206 virtual void SetZoomLevel(double level) OVERRIDE; | |
| 207 virtual void Zoom(PageZoom zoom) OVERRIDE; | 206 virtual void Zoom(PageZoom zoom) OVERRIDE; |
| 208 virtual void SyncRendererPrefs() OVERRIDE; | 207 virtual void SyncRendererPrefs() OVERRIDE; |
| 209 virtual void ToggleSpeechInput() OVERRIDE; | 208 virtual void ToggleSpeechInput() OVERRIDE; |
| 210 virtual WebPreferences GetWebkitPreferences() OVERRIDE; | 209 virtual WebPreferences GetWebkitPreferences() OVERRIDE; |
| 211 virtual void UpdateWebkitPreferences( | 210 virtual void UpdateWebkitPreferences( |
| 212 const WebPreferences& prefs) OVERRIDE; | 211 const WebPreferences& prefs) OVERRIDE; |
| 213 virtual void NotifyTimezoneChange() OVERRIDE; | 212 virtual void NotifyTimezoneChange() OVERRIDE; |
| 214 virtual void GetAudioOutputControllers( | 213 virtual void GetAudioOutputControllers( |
| 215 const GetAudioOutputControllersCallback& callback) const OVERRIDE; | 214 const GetAudioOutputControllersCallback& callback) const OVERRIDE; |
| 216 | 215 |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 717 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 719 }; | 718 }; |
| 720 | 719 |
| 721 #if defined(COMPILER_MSVC) | 720 #if defined(COMPILER_MSVC) |
| 722 #pragma warning(pop) | 721 #pragma warning(pop) |
| 723 #endif | 722 #endif |
| 724 | 723 |
| 725 } // namespace content | 724 } // namespace content |
| 726 | 725 |
| 727 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 726 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |