| Index: ppapi/proxy/ppb_image_data_proxy.h
|
| diff --git a/ppapi/proxy/ppb_image_data_proxy.h b/ppapi/proxy/ppb_image_data_proxy.h
|
| index 6001b37a193c10efc88bf8333a054b6457c74932..fdc921d8714a44d1990a9c4ee6481ed3eb592014 100644
|
| --- a/ppapi/proxy/ppb_image_data_proxy.h
|
| +++ b/ppapi/proxy/ppb_image_data_proxy.h
|
| @@ -17,6 +17,7 @@
|
| #include "ppapi/c/pp_var.h"
|
| #include "ppapi/c/ppb_image_data.h"
|
| #include "ppapi/proxy/interface_proxy.h"
|
| +#include "ppapi/proxy/ppapi_proxy_export.h"
|
| #include "ppapi/proxy/serialized_structs.h"
|
| #include "ppapi/shared_impl/ppb_image_data_shared.h"
|
| #include "ppapi/shared_impl/resource.h"
|
| @@ -31,9 +32,10 @@ class SerializedHandle;
|
|
|
| // The proxied image data resource. Unlike most resources, this needs to be
|
| // public in the header since a number of other resources need to access it.
|
| -class ImageData : public ppapi::Resource,
|
| - public ppapi::thunk::PPB_ImageData_API,
|
| - public ppapi::PPB_ImageData_Shared {
|
| +class PPAPI_PROXY_EXPORT ImageData
|
| + : public ppapi::Resource,
|
| + public NON_EXPORTED_BASE(ppapi::thunk::PPB_ImageData_API),
|
| + public ppapi::PPB_ImageData_Shared {
|
| public:
|
| #if !defined(OS_NACL)
|
| ImageData(const ppapi::HostResource& resource,
|
|
|