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

Unified Diff: content/common/file_system_messages.h

Issue 6731033: Remove the path from PlatformFileInfo; it's cleaner just to pass it along as a (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/common/file_system_messages.h
===================================================================
--- content/common/file_system_messages.h (revision 79323)
+++ content/common/file_system_messages.h (working copy)
@@ -30,9 +30,10 @@
// WebFileSystem response messages.
IPC_MESSAGE_CONTROL1(FileSystemMsg_DidSucceed,
int /* request_id */)
-IPC_MESSAGE_CONTROL2(FileSystemMsg_DidReadMetadata,
+IPC_MESSAGE_CONTROL3(FileSystemMsg_DidReadMetadata,
int /* request_id */,
- base::PlatformFileInfo)
+ base::PlatformFileInfo,
+ FilePath /* true platform path, where possible */)
IPC_MESSAGE_CONTROL3(FileSystemMsg_DidReadDirectory,
int /* request_id */,
std::vector<base::FileUtilProxy::Entry> /* entries */,

Powered by Google App Engine
This is Rietveld 408576698