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

Unified Diff: content/browser/download/save_item.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/save_file_manager.cc ('k') | content/browser/download/save_item.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/save_item.h
diff --git a/content/browser/download/save_item.h b/content/browser/download/save_item.h
index a78c28ac49a2735aa819f90098c8caa6988d0b94..3a1d8dfb90d31e0a2c2dae4d0413e12c519cb607 100644
--- a/content/browser/download/save_item.h
+++ b/content/browser/download/save_item.h
@@ -48,7 +48,7 @@ class SaveItem {
int PercentComplete() const;
// Update path for SaveItem, the actual file is renamed on the file thread.
- void Rename(const FilePath& full_path);
+ void Rename(const base::FilePath& full_path);
void SetSaveId(int32 save_id);
@@ -56,8 +56,8 @@ class SaveItem {
// Accessors.
SaveState state() const { return state_; }
- const FilePath& full_path() const { return full_path_; }
- const FilePath& file_name() const { return file_name_; }
+ const base::FilePath& full_path() const { return full_path_; }
+ const base::FilePath& file_name() const { return file_name_; }
const GURL& url() const { return url_; }
const Referrer& referrer() const { return referrer_; }
int64 total_bytes() const { return total_bytes_; }
@@ -78,10 +78,10 @@ class SaveItem {
int32 save_id_;
// Full path to the save item file.
- FilePath full_path_;
+ base::FilePath full_path_;
// Short display version of the file.
- FilePath file_name_;
+ base::FilePath file_name_;
// The URL for this save item.
GURL url_;
« no previous file with comments | « content/browser/download/save_file_manager.cc ('k') | content/browser/download/save_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698