diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-07 17:32:43 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-07 17:32:43 +0000 |
commit | 470ae161eeeff7059903902451f52888f7a43b98 (patch) | |
tree | 8128404b72cabf32531e6c55255fbaaf2deb184f /ppapi | |
parent | ad67f979e1b4c0a8e61065681a4b6594d6570067 (diff) | |
download | chromium_src-470ae161eeeff7059903902451f52888f7a43b98.zip chromium_src-470ae161eeeff7059903902451f52888f7a43b98.tar.gz chromium_src-470ae161eeeff7059903902451f52888f7a43b98.tar.bz2 |
Pepper: Make PPB_FileChooser_Dev::Show "return" PP_ERROR_USERCANCEL if no file is selected.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6286128
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73995 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/c/dev/ppb_file_chooser_dev.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ppapi/c/dev/ppb_file_chooser_dev.h b/ppapi/c/dev/ppb_file_chooser_dev.h index 0a43d11..ebaa17b 100644 --- a/ppapi/c/dev/ppb_file_chooser_dev.h +++ b/ppapi/c/dev/ppb_file_chooser_dev.h @@ -23,7 +23,8 @@ struct PP_FileChooserOptions_Dev { PP_FileChooserMode_Dev mode; // A comma-separated list of MIME types such as audio/*,text/plain. The - // dialog may restrict selectable files to the specified MIME types. + // dialog may restrict selectable files to the specified MIME types. Null may + // be given to indicate that all types should be accepted. // TODO(darin): What if the mime type is unknown to the system? The plugin // may wish to describe the mime type and provide a matching file extension. // It is more webby to use mime types here instead of file extensions. @@ -51,7 +52,9 @@ struct PPB_FileChooser_Dev { // if the resource is invalid or some type other than a FileChooser. PP_Bool (*IsFileChooser)(PP_Resource resource); - // Prompts the user to choose a file or files. + // Prompts the user to choose a file or files. The callback is called with + // PP_OK on successful completion with a file (or files) selected or + // PP_ERROR_USERCANCEL if the user selected no file. int32_t (*Show)(PP_Resource chooser, struct PP_CompletionCallback callback); // After a successful call to Show, this method may be used to query the @@ -65,4 +68,3 @@ struct PPB_FileChooser_Dev { }; #endif /* PPAPI_C_DEV_PPB_FILE_CHOOSER_DEV_H_ */ - |