summaryrefslogtreecommitdiffstats
path: root/content/browser/download/save_item.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 19:20:34 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 19:20:34 +0000
commit2dec8ec385e65c80571c5723dc572264a934b7c9 (patch)
treef30b887d1fa77930cc7b9bbc1a0c6a13b7437255 /content/browser/download/save_item.h
parent60e28106a326d40d9ba117d18be0abcd954c8832 (diff)
downloadchromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.zip
chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.gz
chromium_src-2dec8ec385e65c80571c5723dc572264a934b7c9.tar.bz2
Use base namespace for FilePath in content/browser
Review URL: https://codereview.chromium.org/12213066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/download/save_item.h')
-rw-r--r--content/browser/download/save_item.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/download/save_item.h b/content/browser/download/save_item.h
index a78c28a..3a1d8df 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_;