diff options
Diffstat (limited to 'content/public/browser/render_view_host.h')
-rw-r--r-- | content/public/browser/render_view_host.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h index 401fe0e..14226ea 100644 --- a/content/public/browser/render_view_host.h +++ b/content/public/browser/render_view_host.h @@ -25,6 +25,10 @@ namespace gfx { class Point; } +namespace ui { +struct SelectedFileInfo; +} + namespace WebKit { struct WebFindOptions; struct WebMediaPlayerAction; @@ -38,7 +42,6 @@ class RenderViewHostDelegate; class SessionStorageNamespace; class SiteInstance; struct CustomContextMenuContext; -struct SelectedFileInfo; // A RenderViewHost is responsible for creating and talking to a RenderView // object in a child process. It exposes a high level API to users, for things @@ -206,7 +209,7 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost { // base::PlatformFileFlags enum which specify which file permissions should // be granted to the renderer. virtual void FilesSelectedInChooser( - const std::vector<SelectedFileInfo>& files, + const std::vector<ui::SelectedFileInfo>& files, int permissions) = 0; virtual RenderViewHostDelegate* GetDelegate() const = 0; |