Index: content/public/browser/render_view_host.h |
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h |
index 401fe0ea16f7d054e98b375fa8ae65dec51d11d8..14226ea7e429fe96ed6637818cd98e5d5e3af83e 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; |