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

Unified Diff: webkit/glue/plugins/pepper_file_io.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_file_chooser.cc ('k') | webkit/glue/plugins/pepper_file_ref.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_file_io.cc
===================================================================
--- webkit/glue/plugins/pepper_file_io.cc (revision 51996)
+++ webkit/glue/plugins/pepper_file_io.cc (working copy)
@@ -37,11 +37,11 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
scoped_refptr<FileRef> file_ref(Resource::GetAs<FileRef>(file_ref_id));
if (!file_ref.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->Open(file_ref, open_flags, callback);
}
@@ -51,7 +51,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->Query(info, callback);
}
@@ -62,7 +62,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->Touch(last_access_time, last_modified_time, callback);
}
@@ -74,7 +74,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->Read(offset, buffer, bytes_to_read, callback);
}
@@ -86,7 +86,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->Write(offset, buffer, bytes_to_write, callback);
}
@@ -96,7 +96,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->SetLength(length, callback);
}
@@ -105,7 +105,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->Flush(callback);
}
@@ -134,7 +134,7 @@
int32_t GetOSFileDescriptor(PP_Resource file_io_id) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->GetOSFileDescriptor();
}
@@ -145,7 +145,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->WillWrite(offset, bytes_to_write, callback);
}
@@ -155,7 +155,7 @@
PP_CompletionCallback callback) {
scoped_refptr<FileIO> file_io(Resource::GetAs<FileIO>(file_io_id));
if (!file_io.get())
- return PP_Error_BadResource;
+ return PP_ERROR_BADRESOURCE;
return file_io->WillSetLength(length, callback);
}
@@ -188,20 +188,20 @@
int32_t open_flags,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::Query(PP_FileInfo* info,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::Touch(PP_Time last_access_time,
PP_Time last_modified_time,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::Read(int64_t offset,
@@ -209,7 +209,7 @@
int32_t bytes_to_read,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::Write(int64_t offset,
@@ -217,18 +217,18 @@
int32_t bytes_to_write,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::SetLength(int64_t length,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::Flush(PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
void FileIO::Close() {
@@ -237,20 +237,20 @@
int32_t FileIO::GetOSFileDescriptor() {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::WillWrite(int64_t offset,
int32_t bytes_to_write,
PP_CompletionCallback callback) {
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_Error_Failed;
+ return PP_ERROR_FAILED;
}
int32_t FileIO::WillSetLength(int64_t length,
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_file_chooser.cc ('k') | webkit/glue/plugins/pepper_file_ref.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698