blob: 88078ba5adcd2ade06b6bae77dddfbc3fa2f171c [file] [log] [blame]
[email protected]256513872012-01-05 15:41:521// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]872caf562011-12-07 22:50:432// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]d989cce2011-12-08 04:51:145#ifndef PPAPI_SHARED_IMPL_PPB_VAR_SHARED_H_
6#define PPAPI_SHARED_IMPL_PPB_VAR_SHARED_H_
[email protected]872caf562011-12-07 22:50:437
8#include "ppapi/c/pp_module.h"
9#include "ppapi/c/pp_stdint.h"
[email protected]256513872012-01-05 15:41:5210#include "ppapi/c/ppb_var.h"
[email protected]9c6e0de2012-01-27 04:55:5511#include "ppapi/c/ppb_var_array_buffer.h"
[email protected]872caf562011-12-07 22:50:4312#include "ppapi/shared_impl/ppapi_shared_export.h"
13
14struct PP_Var;
[email protected]872caf562011-12-07 22:50:4315
16namespace ppapi {
17
[email protected]d989cce2011-12-08 04:51:1418class PPAPI_SHARED_EXPORT PPB_Var_Shared {
[email protected]872caf562011-12-07 22:50:4319 public:
[email protected]256513872012-01-05 15:41:5220 static const PPB_Var_1_1* GetVarInterface1_1();
[email protected]872caf562011-12-07 22:50:4321 static const PPB_Var_1_0* GetVarInterface1_0();
[email protected]9c6e0de2012-01-27 04:55:5522 static const PPB_VarArrayBuffer_1_0* GetVarArrayBufferInterface1_0();
[email protected]872caf562011-12-07 22:50:4323};
24
25} // namespace ppapi
26
[email protected]d989cce2011-12-08 04:51:1427#endif // PPAPI_SHARED_IMPL_PPB_VAR_SHARED_H_