Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Unified Diff: ppapi/thunk/ppb_image_data_thunk.cc

Issue 8790004: Rename the shared impl files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/thunk/ppb_char_set_thunk.cc ('k') | ppapi/thunk/ppb_url_util_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_image_data_thunk.cc
diff --git a/ppapi/thunk/ppb_image_data_thunk.cc b/ppapi/thunk/ppb_image_data_thunk.cc
index 7941ab686be4994894cf6da30668b36aa8246062..00d9184565047211ceee98addecdd3228b5d527c 100644
--- a/ppapi/thunk/ppb_image_data_thunk.cc
+++ b/ppapi/thunk/ppb_image_data_thunk.cc
@@ -4,7 +4,7 @@
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/ppb_image_data.h"
-#include "ppapi/shared_impl/image_data_impl.h"
+#include "ppapi/shared_impl/ppb_image_data_shared.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_image_data_api.h"
#include "ppapi/thunk/resource_creation_api.h"
@@ -16,11 +16,11 @@ namespace thunk {
namespace {
PP_ImageDataFormat GetNativeImageDataFormat() {
- return ppapi::ImageDataImpl::GetNativeImageDataFormat();
+ return ppapi::PPB_ImageData_Shared::GetNativeImageDataFormat();
}
PP_Bool IsImageDataFormatSupported(PP_ImageDataFormat format) {
- return ppapi::ImageDataImpl::IsImageDataFormatSupported(format)
+ return ppapi::PPB_ImageData_Shared::IsImageDataFormatSupported(format)
? PP_TRUE : PP_FALSE;
}
« no previous file with comments | « ppapi/thunk/ppb_char_set_thunk.cc ('k') | ppapi/thunk/ppb_url_util_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698