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

Unified Diff: ui/metro_viewer/metro_viewer_messages.h

Issue 14282002: Added support for displaying the select folder picker in Chrome ASH on Windows 8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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: 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 */

Powered by Google App Engine
This is Rietveld 408576698