From 6060b10c0db5aab66ed98323a79b239a2df0119b Mon Sep 17 00:00:00 2001 From: "wez@chromium.org" Date: Sat, 31 Mar 2012 04:24:21 +0000 Subject: Check explicitly for version 1.0 PPB_File* interfaces in pp::File* wrappers. BUG=107398 Review URL: http://codereview.chromium.org/9712001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130042 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/cpp/file_io.cc | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'ppapi/cpp/file_io.cc') diff --git a/ppapi/cpp/file_io.cc b/ppapi/cpp/file_io.cc index 399c430..e596577 100644 --- a/ppapi/cpp/file_io.cc +++ b/ppapi/cpp/file_io.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -16,8 +16,8 @@ namespace pp { namespace { -template <> const char* interface_name() { - return PPB_FILEIO_INTERFACE; +template <> const char* interface_name() { + return PPB_FILEIO_INTERFACE_1_0; } } // namespace @@ -26,9 +26,9 @@ FileIO::FileIO() { } FileIO::FileIO(const InstanceHandle& instance) { - if (!has_interface()) + if (!has_interface()) return; - PassRefFromConstructor(get_interface()->Create( + PassRefFromConstructor(get_interface()->Create( instance.pp_instance())); } @@ -39,27 +39,27 @@ FileIO::FileIO(const FileIO& other) int32_t FileIO::Open(const FileRef& file_ref, int32_t open_flags, const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->Open( + return get_interface()->Open( pp_resource(), file_ref.pp_resource(), open_flags, cc.pp_completion_callback()); } int32_t FileIO::Query(PP_FileInfo* result_buf, const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->Query( + return get_interface()->Query( pp_resource(), result_buf, cc.pp_completion_callback()); } int32_t FileIO::Touch(PP_Time last_access_time, PP_Time last_modified_time, const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->Touch( + return get_interface()->Touch( pp_resource(), last_access_time, last_modified_time, cc.pp_completion_callback()); } @@ -68,9 +68,9 @@ int32_t FileIO::Read(int64_t offset, char* buffer, int32_t bytes_to_read, const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->Read(pp_resource(), + return get_interface()->Read(pp_resource(), offset, buffer, bytes_to_read, cc.pp_completion_callback()); } @@ -78,32 +78,32 @@ int32_t FileIO::Write(int64_t offset, const char* buffer, int32_t bytes_to_write, const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->Write( + return get_interface()->Write( pp_resource(), offset, buffer, bytes_to_write, cc.pp_completion_callback()); } int32_t FileIO::SetLength(int64_t length, const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->SetLength( + return get_interface()->SetLength( pp_resource(), length, cc.pp_completion_callback()); } int32_t FileIO::Flush(const CompletionCallback& cc) { - if (!has_interface()) + if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); - return get_interface()->Flush( + return get_interface()->Flush( pp_resource(), cc.pp_completion_callback()); } void FileIO::Close() { - if (!has_interface()) + if (!has_interface()) return; - get_interface()->Close(pp_resource()); + get_interface()->Close(pp_resource()); } } // namespace pp -- cgit v1.1