| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 virtual SessionStorageNamespace* | 206 virtual SessionStorageNamespace* |
| 207 GetSessionStorageNamespace() OVERRIDE; | 207 GetSessionStorageNamespace() OVERRIDE; |
| 208 virtual SiteInstance* GetSiteInstance() const OVERRIDE; | 208 virtual SiteInstance* GetSiteInstance() const OVERRIDE; |
| 209 virtual void InsertCSS(const string16& frame_xpath, | 209 virtual void InsertCSS(const string16& frame_xpath, |
| 210 const std::string& css) OVERRIDE; | 210 const std::string& css) OVERRIDE; |
| 211 virtual bool IsRenderViewLive() const OVERRIDE; | 211 virtual bool IsRenderViewLive() const OVERRIDE; |
| 212 virtual void NotifyContextMenuClosed( | 212 virtual void NotifyContextMenuClosed( |
| 213 const CustomContextMenuContext& context) OVERRIDE; | 213 const CustomContextMenuContext& context) OVERRIDE; |
| 214 virtual void NotifyMoveOrResizeStarted() OVERRIDE; | 214 virtual void NotifyMoveOrResizeStarted() OVERRIDE; |
| 215 virtual void ReloadFrame() OVERRIDE; | 215 virtual void ReloadFrame() OVERRIDE; |
| 216 virtual void SendOrientationChangeEvent(int orientation) OVERRIDE; |
| 216 virtual void SetAltErrorPageURL(const GURL& url) OVERRIDE; | 217 virtual void SetAltErrorPageURL(const GURL& url) OVERRIDE; |
| 217 virtual void SetWebUIProperty(const std::string& name, | 218 virtual void SetWebUIProperty(const std::string& name, |
| 218 const std::string& value) OVERRIDE; | 219 const std::string& value) OVERRIDE; |
| 219 virtual void SetZoomLevel(double level) OVERRIDE; | 220 virtual void SetZoomLevel(double level) OVERRIDE; |
| 220 virtual void Zoom(PageZoom zoom) OVERRIDE; | 221 virtual void Zoom(PageZoom zoom) OVERRIDE; |
| 221 virtual void SyncRendererPrefs() OVERRIDE; | 222 virtual void SyncRendererPrefs() OVERRIDE; |
| 222 virtual void ToggleSpeechInput() OVERRIDE; | 223 virtual void ToggleSpeechInput() OVERRIDE; |
| 223 virtual void UpdateWebkitPreferences(const WebPreferences& prefs) OVERRIDE; | 224 virtual void UpdateWebkitPreferences(const WebPreferences& prefs) OVERRIDE; |
| 224 | 225 |
| 225 void set_delegate(RenderViewHostDelegate* d) { | 226 void set_delegate(RenderViewHostDelegate* d) { |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 646 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 646 }; | 647 }; |
| 647 | 648 |
| 648 #if defined(COMPILER_MSVC) | 649 #if defined(COMPILER_MSVC) |
| 649 #pragma warning(pop) | 650 #pragma warning(pop) |
| 650 #endif | 651 #endif |
| 651 | 652 |
| 652 } // namespace content | 653 } // namespace content |
| 653 | 654 |
| 654 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 655 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |