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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 const gfx::Point& location, | 212 const gfx::Point& location, |
213 const blink::WebPluginAction& action) OVERRIDE; | 213 const blink::WebPluginAction& action) OVERRIDE; |
214 virtual void ExitFullscreen() OVERRIDE; | 214 virtual void ExitFullscreen() OVERRIDE; |
215 virtual void FirePageBeforeUnload(bool for_cross_site_transition) OVERRIDE; | 215 virtual void FirePageBeforeUnload(bool for_cross_site_transition) OVERRIDE; |
216 virtual void FilesSelectedInChooser( | 216 virtual void FilesSelectedInChooser( |
217 const std::vector<ui::SelectedFileInfo>& files, | 217 const std::vector<ui::SelectedFileInfo>& files, |
218 FileChooserParams::Mode permissions) OVERRIDE; | 218 FileChooserParams::Mode permissions) OVERRIDE; |
219 virtual RenderViewHostDelegate* GetDelegate() const OVERRIDE; | 219 virtual RenderViewHostDelegate* GetDelegate() const OVERRIDE; |
220 virtual int GetEnabledBindings() const OVERRIDE; | 220 virtual int GetEnabledBindings() const OVERRIDE; |
221 virtual SiteInstance* GetSiteInstance() const OVERRIDE; | 221 virtual SiteInstance* GetSiteInstance() const OVERRIDE; |
222 virtual void InsertCSS(const base::string16& frame_xpath, | |
223 const std::string& css) OVERRIDE; | |
224 virtual bool IsRenderViewLive() const OVERRIDE; | 222 virtual bool IsRenderViewLive() const OVERRIDE; |
225 virtual void NotifyMoveOrResizeStarted() OVERRIDE; | 223 virtual void NotifyMoveOrResizeStarted() OVERRIDE; |
226 virtual void ReloadFrame() OVERRIDE; | 224 virtual void ReloadFrame() OVERRIDE; |
227 virtual void SetWebUIProperty(const std::string& name, | 225 virtual void SetWebUIProperty(const std::string& name, |
228 const std::string& value) OVERRIDE; | 226 const std::string& value) OVERRIDE; |
229 virtual void Zoom(PageZoom zoom) OVERRIDE; | 227 virtual void Zoom(PageZoom zoom) OVERRIDE; |
230 virtual void SyncRendererPrefs() OVERRIDE; | 228 virtual void SyncRendererPrefs() OVERRIDE; |
231 virtual void ToggleSpeechInput() OVERRIDE; | 229 virtual void ToggleSpeechInput() OVERRIDE; |
232 virtual WebPreferences GetWebkitPreferences() OVERRIDE; | 230 virtual WebPreferences GetWebkitPreferences() OVERRIDE; |
233 virtual void UpdateWebkitPreferences( | 231 virtual void UpdateWebkitPreferences( |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 735 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
738 }; | 736 }; |
739 | 737 |
740 #if defined(COMPILER_MSVC) | 738 #if defined(COMPILER_MSVC) |
741 #pragma warning(pop) | 739 #pragma warning(pop) |
742 #endif | 740 #endif |
743 | 741 |
744 } // namespace content | 742 } // namespace content |
745 | 743 |
746 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 744 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |