// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PPAPI_SHARED_IMPL_PPB_DEVICE_REF_SHARED_H_ #define PPAPI_SHARED_IMPL_PPB_DEVICE_REF_SHARED_H_ #include <string> #include "base/compiler_specific.h" #include "ppapi/shared_impl/resource.h" #include "ppapi/thunk/ppb_device_ref_api.h" namespace ppapi { // IF YOU ADD STUFF TO THIS CLASS // ============================== // Be sure to add it to the STRUCT_TRAITS at the top of ppapi_messages.h. struct PPAPI_SHARED_EXPORT DeviceRefData { … }; class PPAPI_SHARED_EXPORT PPB_DeviceRef_Shared : public Resource, public thunk::PPB_DeviceRef_API { … }; } // namespace ppapi #endif // PPAPI_SHARED_IMPL_PPB_DEVICE_REF_SHARED_H_