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