Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1289)

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 188923002: Move RenderViewHost::InsertCSS to RenderFrameHost. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: nasko Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698