summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppb_image_data_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/proxy/ppb_image_data_proxy.h')
-rw-r--r--ppapi/proxy/ppb_image_data_proxy.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/ppapi/proxy/ppb_image_data_proxy.h b/ppapi/proxy/ppb_image_data_proxy.h
deleted file mode 100644
index 39e8ad6..0000000
--- a/ppapi/proxy/ppb_image_data_proxy.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (c) 2010 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_PPB_IMAGE_DATA_PROXY_H_
-#define PPAPI_PPB_IMAGE_DATA_PROXY_H_
-
-#include "ppapi/c/pp_completion_callback.h"
-#include "ppapi/c/pp_module.h"
-#include "ppapi/c/pp_resource.h"
-#include "ppapi/c/pp_size.h"
-#include "ppapi/c/pp_var.h"
-#include "ppapi/proxy/interface_proxy.h"
-
-struct PPB_ImageData;
-
-namespace pp {
-namespace proxy {
-
-class PPB_ImageData_Proxy : public InterfaceProxy {
- public:
- PPB_ImageData_Proxy(Dispatcher* dispatcher, const void* target_interface);
- virtual ~PPB_ImageData_Proxy();
-
- const PPB_ImageData* ppb_image_data_target() const {
- return reinterpret_cast<const PPB_ImageData*>(target_interface());
- }
-
- // InterfaceProxy implementation.
- virtual const void* GetSourceInterface() const;
- virtual InterfaceID GetInterfaceId() const;
- virtual void OnMessageReceived(const IPC::Message& msg);
-
- private:
- // Message handlers.
- void OnMsgGetNativeImageDataFormat(int32* result);
- void OnMsgIsImageDataFormatSupported(int32 format, bool* result);
- void OnMsgCreate(PP_Module module,
- int32_t format,
- const PP_Size& size,
- bool init_to_zero,
- PP_Resource* result,
- std::string* image_data_desc,
- uint64_t* result_shm_handle);
-};
-
-} // namespace proxy
-} // namespace pp
-
-#endif // PPAPI_PPB_IMAGE_DATA_PROXY_H_