Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Unified Diff: ppapi/thunk/ppb_char_set_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/shared_impl/video_decoder_impl.cc ('k') | ppapi/thunk/ppb_image_data_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_char_set_thunk.cc
diff --git a/ppapi/thunk/ppb_char_set_thunk.cc b/ppapi/thunk/ppb_char_set_thunk.cc
index 3e240e818e6d86c0b9a8ba41c00be405a16abe34..27419b4a14a32de97205314954be02d78a5bf37b 100644
--- a/ppapi/thunk/ppb_char_set_thunk.cc
+++ b/ppapi/thunk/ppb_char_set_thunk.cc
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "ppapi/c/pp_var.h"
-#include "ppapi/shared_impl/char_set_impl.h"
+#include "ppapi/shared_impl/ppb_char_set_shared.h"
#include "ppapi/thunk/thunk.h"
#include "ppapi/thunk/enter.h"
@@ -34,8 +34,8 @@ char* UTF16ToCharSet(PP_Instance instance,
if (enter.failed())
return NULL;
- return CharSetImpl::UTF16ToCharSet(utf16, utf16_len, output_char_set,
- on_error, output_length);
+ return PPB_CharSet_Shared::UTF16ToCharSet(utf16, utf16_len, output_char_set,
+ on_error, output_length);
}
uint16_t* CharSetToUTF16(PP_Instance instance,
@@ -49,8 +49,8 @@ uint16_t* CharSetToUTF16(PP_Instance instance,
if (enter.failed())
return NULL;
- return CharSetImpl::CharSetToUTF16(input, input_len, input_char_set,
- on_error, output_length);
+ return PPB_CharSet_Shared::CharSetToUTF16(input, input_len, input_char_set,
+ on_error, output_length);
}
PP_Var GetDefaultCharSet(PP_Instance instance) {
« no previous file with comments | « ppapi/shared_impl/video_decoder_impl.cc ('k') | ppapi/thunk/ppb_image_data_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698