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

Unified Diff: webkit/glue/plugins/pepper_directory_reader.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_device_context_2d.cc ('k') | webkit/glue/plugins/pepper_event_conversion.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_directory_reader.cc
===================================================================
--- webkit/glue/plugins/pepper_directory_reader.cc (revision 51996)
+++ webkit/glue/plugins/pepper_directory_reader.cc (working copy)
@@ -35,7 +35,7 @@
scoped_refptr<DirectoryReader> reader(
Resource::GetAs<DirectoryReader>(reader_id));
if (!reader.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return reader->GetNextEntry(entry, callback);
}
@@ -63,7 +63,7 @@
int32_t DirectoryReader::GetNextEntry(PP_DirectoryEntry* entry,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
} // namespace pepper
« no previous file with comments | « webkit/glue/plugins/pepper_device_context_2d.cc ('k') | webkit/glue/plugins/pepper_event_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698