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

Unified Diff: content/browser/download/download_file_impl.h

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
« no previous file with comments | « content/browser/download/download_file_factory.cc ('k') | content/browser/download/download_file_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/download_file_impl.h
diff --git a/content/browser/download/download_file_impl.h b/content/browser/download/download_file_impl.h
index e32df90e87df16770709ed17c9a943ce8e8450e5..3be1d0f6acd9fdabe1fc36292144c44e8d09cc79 100644
--- a/content/browser/download/download_file_impl.h
+++ b/content/browser/download/download_file_impl.h
@@ -36,7 +36,7 @@ class CONTENT_EXPORT DownloadFileImpl : virtual public DownloadFile {
// DownloadDestinationObserver.
DownloadFileImpl(
scoped_ptr<DownloadSaveInfo> save_info,
- const FilePath& default_downloads_directory,
+ const base::FilePath& default_downloads_directory,
const GURL& url,
const GURL& referrer_url,
bool calculate_hash,
@@ -50,14 +50,14 @@ class CONTENT_EXPORT DownloadFileImpl : virtual public DownloadFile {
// DownloadFile functions.
virtual void Initialize(const InitializeCallback& callback) OVERRIDE;
virtual void RenameAndUniquify(
- const FilePath& full_path,
+ const base::FilePath& full_path,
const RenameCompletionCallback& callback) OVERRIDE;
virtual void RenameAndAnnotate(
- const FilePath& full_path,
+ const base::FilePath& full_path,
const RenameCompletionCallback& callback) OVERRIDE;
virtual void Detach() OVERRIDE;
virtual void Cancel() OVERRIDE;
- virtual FilePath FullPath() const OVERRIDE;
+ virtual base::FilePath FullPath() const OVERRIDE;
virtual bool InProgress() const OVERRIDE;
virtual int64 BytesSoFar() const OVERRIDE;
virtual int64 CurrentSpeed() const OVERRIDE;
@@ -81,7 +81,7 @@ class CONTENT_EXPORT DownloadFileImpl : virtual public DownloadFile {
BaseFile file_;
// The default directory for creating the download file.
- FilePath default_download_directory_;
+ base::FilePath default_download_directory_;
// The stream through which data comes.
// TODO(rdsmith): Move this into BaseFile; requires using the same
« no previous file with comments | « content/browser/download/download_file_factory.cc ('k') | content/browser/download/download_file_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698