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

Unified Diff: ppapi/thunk/ppb_char_set_thunk.cc

Issue 8824015: Revert 113290 - Rename the shared_impl resource files to give them more regular names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
===================================================================
--- ppapi/thunk/ppb_char_set_thunk.cc (revision 113301)
+++ ppapi/thunk/ppb_char_set_thunk.cc (working copy)
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "ppapi/c/pp_var.h"
-#include "ppapi/shared_impl/ppb_char_set_shared.h"
+#include "ppapi/shared_impl/char_set_impl.h"
#include "ppapi/thunk/thunk.h"
#include "ppapi/thunk/enter.h"
@@ -34,8 +34,8 @@
if (enter.failed())
return NULL;
- return PPB_CharSet_Shared::UTF16ToCharSet(utf16, utf16_len, output_char_set,
- on_error, output_length);
+ return CharSetImpl::UTF16ToCharSet(utf16, utf16_len, output_char_set,
+ on_error, output_length);
}
uint16_t* CharSetToUTF16(PP_Instance instance,
@@ -49,8 +49,8 @@
if (enter.failed())
return NULL;
- return PPB_CharSet_Shared::CharSetToUTF16(input, input_len, input_char_set,
- on_error, output_length);
+ return CharSetImpl::CharSetToUTF16(input, input_len, input_char_set,
+ on_error, output_length);
}
PP_Var GetDefaultCharSet(PP_Instance instance) {
Property changes on: ppapi/thunk/ppb_char_set_thunk.cc
___________________________________________________________________
Added: svn:mergeinfo
« 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