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

Unified Diff: content/browser/download/save_types.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_package_unittest.cc ('k') | content/browser/download/save_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/save_types.h
diff --git a/content/browser/download/save_types.h b/content/browser/download/save_types.h
index 68a44c7da2f4f2f773b2d5732945f2effc023cf6..ab3fba9967be622a2b140dc7a755b0005676972b 100644
--- a/content/browser/download/save_types.h
+++ b/content/browser/download/save_types.h
@@ -14,7 +14,7 @@
#include "googleurl/src/gurl.h"
namespace content {
-typedef std::vector<std::pair<int, FilePath> > FinalNameList;
+typedef std::vector<std::pair<int, base::FilePath> > FinalNameList;
typedef std::vector<int> SaveIDList;
// This structure is used to handle and deliver some info
@@ -33,7 +33,7 @@ struct SaveFileCreateInfo {
SAVE_FILE_FROM_FILE
};
- SaveFileCreateInfo(const FilePath& path,
+ SaveFileCreateInfo(const base::FilePath& path,
const GURL& url,
SaveFileSource save_source,
int32 save_id);
@@ -44,7 +44,7 @@ struct SaveFileCreateInfo {
// SaveItem fields.
// The local file path of saved file.
- FilePath path;
+ base::FilePath path;
// Original URL of the saved resource.
GURL url;
// Final URL of the saved resource since some URL might be redirected.
« no previous file with comments | « content/browser/download/save_package_unittest.cc ('k') | content/browser/download/save_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698