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

Unified Diff: content/browser/download/download_net_log_parameters.cc

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
Index: content/browser/download/download_net_log_parameters.cc
diff --git a/content/browser/download/download_net_log_parameters.cc b/content/browser/download/download_net_log_parameters.cc
index 8d8e4031c51343f950cad254bc322980e9fc37f8..a98786404e25269e783a40f529babc8b4941cd11 100644
--- a/content/browser/download/download_net_log_parameters.cc
+++ b/content/browser/download/download_net_log_parameters.cc
@@ -72,8 +72,8 @@ base::Value* ItemCheckedNetLogCallback(
return dict;
}
-base::Value* ItemRenamedNetLogCallback(const FilePath* old_filename,
- const FilePath* new_filename,
+base::Value* ItemRenamedNetLogCallback(const base::FilePath* old_filename,
+ const base::FilePath* new_filename,
net::NetLog::LogLevel log_level) {
DictionaryValue* dict = new DictionaryValue();
@@ -146,7 +146,7 @@ base::Value* ItemCanceledNetLogCallback(int64 bytes_so_far,
return dict;
}
-base::Value* FileOpenedNetLogCallback(const FilePath* file_name,
+base::Value* FileOpenedNetLogCallback(const base::FilePath* file_name,
int64 start_offset,
net::NetLog::LogLevel log_level) {
DictionaryValue* dict = new DictionaryValue();
@@ -168,8 +168,8 @@ base::Value* FileStreamDrainedNetLogCallback(size_t stream_size,
return dict;
}
-base::Value* FileRenamedNetLogCallback(const FilePath* old_filename,
- const FilePath* new_filename,
+base::Value* FileRenamedNetLogCallback(const base::FilePath* old_filename,
+ const base::FilePath* new_filename,
net::NetLog::LogLevel log_level) {
DictionaryValue* dict = new DictionaryValue();
« no previous file with comments | « content/browser/download/download_manager_impl_unittest.cc ('k') | content/browser/download/drag_download_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698