diff options
Diffstat (limited to 'ppapi/thunk/thunk.h')
-rw-r--r-- | ppapi/thunk/thunk.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ppapi/thunk/thunk.h b/ppapi/thunk/thunk.h new file mode 100644 index 0000000..39ae8f9 --- /dev/null +++ b/ppapi/thunk/thunk.h @@ -0,0 +1,24 @@ +// Copyright (c) 2011 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. + +#ifndef PPAPI_THUNK_THUNK_H_ +#define PPAPI_THUNK_THUNK_H_ + +#include "base/synchronization/lock.h" + +struct PPB_Graphics2D; +struct PPB_ImageData; + +namespace ppapi { +namespace thunk { + +const PPB_Graphics2D* GetPPB_Graphics2D_Thunk(); +const PPB_ImageData* GetPPB_ImageData_Thunk(); + +} // namespace thunk +} // namespace ppapi + +#endif // PPAPI_THUNK_THUNK_H_ + + |