// Copyright (c) 2013 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. #include "ppapi/cpp/private/ext_crx_file_system_private.h" #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" #include "ppapi/cpp/module_impl.h" namespace pp { namespace { template <> const char* interface_name() { return PPB_EXT_CRXFILESYSTEM_PRIVATE_INTERFACE_0_1; } } // namespace ExtCrxFileSystemPrivate::ExtCrxFileSystemPrivate() { } ExtCrxFileSystemPrivate::ExtCrxFileSystemPrivate( const InstanceHandle& instance) : instance_(instance.pp_instance()) { } ExtCrxFileSystemPrivate::~ExtCrxFileSystemPrivate() { } int32_t ExtCrxFileSystemPrivate::Open( const CompletionCallbackWithOutput& cc) { if (!has_interface()) return cc.MayForce(PP_ERROR_NOINTERFACE); return get_interface()-> Open(instance_, cc.output(), cc.pp_completion_callback()); } } // namespace pp