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

Unified Diff: content/browser/download/drag_download_file.cc

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
Index: content/browser/download/drag_download_file.cc
diff --git a/content/browser/download/drag_download_file.cc b/content/browser/download/drag_download_file.cc
index c1ea02ec551ae404d4c95f23ba305f42118f9e08..d87a7e036379ba52662f93bec87e7fbe39c3a22d 100644
--- a/content/browser/download/drag_download_file.cc
+++ b/content/browser/download/drag_download_file.cc
@@ -55,7 +55,7 @@ class DragDownloadFile::DragDownloadFileUI : public DownloadItem::Observer {
}
void InitiateDownload(scoped_ptr<net::FileStream> file_stream,
- const FilePath& file_path) {
+ const base::FilePath& file_path) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DownloadManager* download_manager =
BrowserContext::GetDownloadManager(web_contents_->GetBrowserContext());
@@ -146,7 +146,7 @@ class DragDownloadFile::DragDownloadFileUI : public DownloadItem::Observer {
DISALLOW_COPY_AND_ASSIGN(DragDownloadFileUI);
};
-DragDownloadFile::DragDownloadFile(const FilePath& file_path,
+DragDownloadFile::DragDownloadFile(const base::FilePath& file_path,
scoped_ptr<net::FileStream> file_stream,
const GURL& url,
const Referrer& referrer,
« no previous file with comments | « content/browser/download/drag_download_file.h ('k') | content/browser/download/drag_download_file_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698