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

Unified Diff: chrome/browser/file_select_helper.h

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/favicon/favicon_tab_helper.cc ('k') | chrome/browser/file_select_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/file_select_helper.h
diff --git a/chrome/browser/file_select_helper.h b/chrome/browser/file_select_helper.h
index 5b58ecb2fbabeaf10a62f3c030290e6602a1762e..9f79df68a6251f0b4d072e1329692c4bb7fec07f 100644
--- a/chrome/browser/file_select_helper.h
+++ b/chrome/browser/file_select_helper.h
@@ -16,9 +16,9 @@
#include "net/base/directory_lister.h"
class Profile;
-class RenderViewHost;
namespace content {
+class RenderViewHost;
struct FileChooserParams;
}
@@ -33,13 +33,13 @@ class FileSelectHelper
explicit FileSelectHelper(Profile* profile);
// Show the file chooser dialog.
- void RunFileChooser(RenderViewHost* render_view_host,
+ void RunFileChooser(content::RenderViewHost* render_view_host,
content::WebContents* tab_contents,
const content::FileChooserParams& params);
// Enumerates all the files in directory.
void EnumerateDirectory(int request_id,
- RenderViewHost* render_view_host,
+ content::RenderViewHost* render_view_host,
const FilePath& path);
private:
@@ -94,7 +94,7 @@ class FileSelectHelper
// Kicks off a new directory enumeration.
void StartNewEnumeration(const FilePath& path,
int request_id,
- RenderViewHost* render_view_host);
+ content::RenderViewHost* render_view_host);
// Callbacks from directory enumeration.
virtual void OnListFile(
@@ -118,7 +118,7 @@ class FileSelectHelper
// The RenderViewHost and WebContents for the page showing a file dialog
// (may only be one such dialog).
- RenderViewHost* render_view_host_;
+ content::RenderViewHost* render_view_host_;
content::WebContents* web_contents_;
// Dialog box used for choosing files to upload from file form fields.
« no previous file with comments | « chrome/browser/favicon/favicon_tab_helper.cc ('k') | chrome/browser/file_select_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698