Chromium Code Reviews| Index: ui/metro_viewer/metro_viewer_messages.h |
| =================================================================== |
| --- ui/metro_viewer/metro_viewer_messages.h (revision 194196) |
| +++ ui/metro_viewer/metro_viewer_messages.h (working copy) |
| @@ -85,6 +85,10 @@ |
| bool, /* success */ |
| std::vector<base::FilePath>) /* filenames */ |
| +// Informs the browser of the result of a select folder operation. |
| +IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_SelectFolderDone, |
| + bool, /* success */ |
| + string16) /* filepath*/ |
|
palmer
2013/04/18 22:58:08
This, and the others, should really be base::FileP
ananta
2013/04/19 00:23:24
I changed all the IPCs to take in FilePaths.
|
| // Messages sent from the browser to the viewer: |
| @@ -124,3 +128,6 @@ |
| string16, /* Default path */ |
| bool) /* allow_multi_select */ |
| +// Requests the viewer to display the select folder dialog. |
| +IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_DisplaySelectFolder, |
| + string16) /* title */ |