summaryrefslogtreecommitdiffstats
path: root/ppapi/thunk/ppb_image_data_thunk.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/thunk/ppb_image_data_thunk.cc')
-rw-r--r--ppapi/thunk/ppb_image_data_thunk.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/thunk/ppb_image_data_thunk.cc b/ppapi/thunk/ppb_image_data_thunk.cc
index 6f75d79..9d91302 100644
--- a/ppapi/thunk/ppb_image_data_thunk.cc
+++ b/ppapi/thunk/ppb_image_data_thunk.cc
@@ -15,11 +15,11 @@ namespace thunk {
namespace {
PP_ImageDataFormat GetNativeImageDataFormat() {
- return pp::shared_impl::ImageDataImpl::GetNativeImageDataFormat();
+ return ppapi::ImageDataImpl::GetNativeImageDataFormat();
}
PP_Bool IsImageDataFormatSupported(PP_ImageDataFormat format) {
- return pp::shared_impl::ImageDataImpl::IsImageDataFormatSupported(format)
+ return ppapi::ImageDataImpl::IsImageDataFormatSupported(format)
? PP_TRUE : PP_FALSE;
}