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

Unified Diff: content/browser/renderer_host/file_utilities_message_filter.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/renderer_host/file_utilities_message_filter.cc
diff --git a/content/browser/renderer_host/file_utilities_message_filter.cc b/content/browser/renderer_host/file_utilities_message_filter.cc
index 6ecf628c1aaa50916fd8b92bc6f11c47824c2fd3..a2fcd809a8f3c6cc807c4569a3cad359b18ba7dc 100644
--- a/content/browser/renderer_host/file_utilities_message_filter.cc
+++ b/content/browser/renderer_host/file_utilities_message_filter.cc
@@ -36,7 +36,7 @@ bool FileUtilitiesMessageFilter::OnMessageReceived(const IPC::Message& message,
}
void FileUtilitiesMessageFilter::OnGetFileInfo(
- const FilePath& path,
+ const base::FilePath& path,
base::PlatformFileInfo* result,
base::PlatformFileError* status) {
*result = base::PlatformFileInfo();
@@ -54,7 +54,7 @@ void FileUtilitiesMessageFilter::OnGetFileInfo(
}
void FileUtilitiesMessageFilter::OnOpenFile(
- const FilePath& path,
+ const base::FilePath& path,
int mode,
IPC::PlatformFileForTransit* result) {
// Open the file only when the child process has been granted permission to

Powered by Google App Engine
This is Rietveld 408576698