Index: content/browser/renderer_host/render_view_host_impl.h |
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h |
index bdb77dfe13edab8fd0346de835acc4d9989940d9..7d57852228eed7aa35d9390d22bdea8f6a2efc11 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.h |
+++ b/content/browser/renderer_host/render_view_host_impl.h |
@@ -137,7 +137,7 @@ class CONTENT_EXPORT RenderViewHostImpl |
virtual void DesktopNotificationPostClick(int notification_id) OVERRIDE; |
virtual void DirectoryEnumerationFinished( |
int request_id, |
- const std::vector<FilePath>& files) OVERRIDE; |
+ const std::vector<base::FilePath>& files) OVERRIDE; |
virtual void DisableScrollbarsForThreshold(const gfx::Size& size) OVERRIDE; |
virtual void DragSourceEndedAt( |
int client_x, int client_y, int screen_x, int screen_y, |
@@ -335,8 +335,8 @@ class CONTENT_EXPORT RenderViewHostImpl |
// contain all saved auxiliary files included all sub frames and resouces. |
void GetSerializedHtmlDataForCurrentPageWithLocalLinks( |
const std::vector<GURL>& links, |
- const std::vector<FilePath>& local_paths, |
- const FilePath& local_directory_name); |
+ const std::vector<base::FilePath>& local_paths, |
+ const base::FilePath& local_directory_name); |
// Notifies the RenderViewHost that its load state changed. |
void LoadStateChanged(const GURL& url, |