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

Unified Diff: webkit/glue/plugins/pepper_file_chooser.cc

Issue 2925007: Update Chrome to pull latest PPAPI with new uses of point and size.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
« no previous file with comments | « webkit/glue/plugins/pepper_event_conversion.cc ('k') | webkit/glue/plugins/pepper_file_io.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_file_chooser.cc
===================================================================
--- webkit/glue/plugins/pepper_file_chooser.cc (revision 51996)
+++ webkit/glue/plugins/pepper_file_chooser.cc (working copy)
@@ -34,7 +34,7 @@
scoped_refptr<FileChooser> chooser(
Resource::GetAs<FileChooser>(chooser_id).get());
if (!chooser.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return chooser->Show(callback);
}
@@ -79,7 +79,7 @@
int32_t FileChooser::Show(PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
scoped_refptr<FileRef> FileChooser::GetNextChosenFile() {
« no previous file with comments | « webkit/glue/plugins/pepper_event_conversion.cc ('k') | webkit/glue/plugins/pepper_file_io.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698