diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-06 23:42:21 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-06 23:42:21 +0000 |
commit | 65165551604da0f53f5f17fbe8e97363b9436cf5 (patch) | |
tree | 897e2b8202f24f08b939e30e60a094649fd6d0d3 /ppapi/thunk/ppb_char_set_thunk.cc | |
parent | 5d80114534c28f69de8abf0d45507f0ec8fda217 (diff) | |
download | chromium_src-65165551604da0f53f5f17fbe8e97363b9436cf5.zip chromium_src-65165551604da0f53f5f17fbe8e97363b9436cf5.tar.gz chromium_src-65165551604da0f53f5f17fbe8e97363b9436cf5.tar.bz2 |
Rename the shared_impl resource files to give them more regular names.
I keep getting confused between things like AudioImpl and PPB_Audio_Impl. This uses _shared for the names, so now we have _impl, _proxy, and _shared which makes more sense.
I also removed the ppb_opengles2_impl file since it was just a forward to the shared version.
BUG=
TEST=
Review URL: http://codereview.chromium.org/8790004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113290 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/ppb_char_set_thunk.cc')
-rw-r--r-- | ppapi/thunk/ppb_char_set_thunk.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/thunk/ppb_char_set_thunk.cc b/ppapi/thunk/ppb_char_set_thunk.cc index 3e240e8..27419b4 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) { |