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

Unified Diff: content/browser/download/save_file.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/mock_download_file.h ('k') | content/browser/download/save_file.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/save_file.h
diff --git a/content/browser/download/save_file.h b/content/browser/download/save_file.h
index 13b6f9d0c853256020405f57c3a90434230251e1..0b2ec069df6b75788ead76b3251c326251de6f57 100644
--- a/content/browser/download/save_file.h
+++ b/content/browser/download/save_file.h
@@ -27,12 +27,12 @@ class SaveFile {
// BaseFile delegated functions.
DownloadInterruptReason Initialize();
DownloadInterruptReason AppendDataToFile(const char* data, size_t data_len);
- DownloadInterruptReason Rename(const FilePath& full_path);
+ DownloadInterruptReason Rename(const base::FilePath& full_path);
void Detach();
void Cancel();
void Finish();
void AnnotateWithSourceInformation();
- FilePath FullPath() const;
+ base::FilePath FullPath() const;
bool InProgress() const;
int64 BytesSoFar() const;
bool GetHash(std::string* hash);
« no previous file with comments | « content/browser/download/mock_download_file.h ('k') | content/browser/download/save_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698