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 23 matching lines...) Expand all Loading... |
34 class ViewMsg_Navigate; | 34 class ViewMsg_Navigate; |
35 struct AccessibilityHostMsg_EventParams; | 35 struct AccessibilityHostMsg_EventParams; |
36 struct AccessibilityHostMsg_LocationChangeParams; | 36 struct AccessibilityHostMsg_LocationChangeParams; |
37 struct MediaPlayerAction; | 37 struct MediaPlayerAction; |
38 struct ViewHostMsg_CreateWindow_Params; | 38 struct ViewHostMsg_CreateWindow_Params; |
39 struct ViewHostMsg_OpenURL_Params; | 39 struct ViewHostMsg_OpenURL_Params; |
40 struct ViewHostMsg_SelectionBounds_Params; | 40 struct ViewHostMsg_SelectionBounds_Params; |
41 struct ViewHostMsg_ShowPopup_Params; | 41 struct ViewHostMsg_ShowPopup_Params; |
42 struct ViewMsg_Navigate_Params; | 42 struct ViewMsg_Navigate_Params; |
43 struct ViewMsg_PostMessage_Params; | 43 struct ViewMsg_PostMessage_Params; |
44 struct ViewMsg_StopFinding_Params; | |
45 | 44 |
46 namespace base { | 45 namespace base { |
47 class ListValue; | 46 class ListValue; |
48 } | 47 } |
49 | 48 |
50 namespace gfx { | 49 namespace gfx { |
51 class Range; | 50 class Range; |
52 } | 51 } |
53 | 52 |
54 namespace ui { | 53 namespace ui { |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 const base::string16& frame_xpath, | 175 const base::string16& frame_xpath, |
177 const base::string16& jscript) OVERRIDE; | 176 const base::string16& jscript) OVERRIDE; |
178 virtual void ExecuteJavascriptInWebFrameCallbackResult( | 177 virtual void ExecuteJavascriptInWebFrameCallbackResult( |
179 const base::string16& frame_xpath, | 178 const base::string16& frame_xpath, |
180 const base::string16& jscript, | 179 const base::string16& jscript, |
181 const JavascriptResultCallback& callback) OVERRIDE; | 180 const JavascriptResultCallback& callback) OVERRIDE; |
182 virtual void ExecutePluginActionAtLocation( | 181 virtual void ExecutePluginActionAtLocation( |
183 const gfx::Point& location, | 182 const gfx::Point& location, |
184 const blink::WebPluginAction& action) OVERRIDE; | 183 const blink::WebPluginAction& action) OVERRIDE; |
185 virtual void ExitFullscreen() OVERRIDE; | 184 virtual void ExitFullscreen() OVERRIDE; |
186 virtual void Find(int request_id, const base::string16& search_text, | |
187 const blink::WebFindOptions& options) OVERRIDE; | |
188 virtual void StopFinding(StopFindAction action) OVERRIDE; | |
189 virtual void FirePageBeforeUnload(bool for_cross_site_transition) OVERRIDE; | 185 virtual void FirePageBeforeUnload(bool for_cross_site_transition) OVERRIDE; |
190 virtual void FilesSelectedInChooser( | 186 virtual void FilesSelectedInChooser( |
191 const std::vector<ui::SelectedFileInfo>& files, | 187 const std::vector<ui::SelectedFileInfo>& files, |
192 FileChooserParams::Mode permissions) OVERRIDE; | 188 FileChooserParams::Mode permissions) OVERRIDE; |
193 virtual RenderViewHostDelegate* GetDelegate() const OVERRIDE; | 189 virtual RenderViewHostDelegate* GetDelegate() const OVERRIDE; |
194 virtual int GetEnabledBindings() const OVERRIDE; | 190 virtual int GetEnabledBindings() const OVERRIDE; |
195 virtual SiteInstance* GetSiteInstance() const OVERRIDE; | 191 virtual SiteInstance* GetSiteInstance() const OVERRIDE; |
196 virtual void InsertCSS(const base::string16& frame_xpath, | 192 virtual void InsertCSS(const base::string16& frame_xpath, |
197 const std::string& css) OVERRIDE; | 193 const std::string& css) OVERRIDE; |
198 virtual bool IsRenderViewLive() const OVERRIDE; | 194 virtual bool IsRenderViewLive() const OVERRIDE; |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 713 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
718 }; | 714 }; |
719 | 715 |
720 #if defined(COMPILER_MSVC) | 716 #if defined(COMPILER_MSVC) |
721 #pragma warning(pop) | 717 #pragma warning(pop) |
722 #endif | 718 #endif |
723 | 719 |
724 } // namespace content | 720 } // namespace content |
725 | 721 |
726 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 722 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |