diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-08 04:51:14 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-08 04:51:14 +0000 |
commit | d989cce292e1696f5bf26d0e0bdb64bdd0090168 (patch) | |
tree | af0deed23b5a9f3e637832a30fb3f8aa1808979e /ppapi/proxy/interface_list.cc | |
parent | f001bd6a14612d0d547539c5a7a3cf53f95e3816 (diff) | |
download | chromium_src-d989cce292e1696f5bf26d0e0bdb64bdd0090168.zip chromium_src-d989cce292e1696f5bf26d0e0bdb64bdd0090168.tar.gz chromium_src-d989cce292e1696f5bf26d0e0bdb64bdd0090168.tar.bz2 |
Apply renaming of ppapi shared stuff to new ppb_var shared code.
This CL brings the PPB_Var new shared implementation (from r113491) in to compliance with the new naming convention introduced at r113428. I didn't want to do add any more complexity to that in-flight CL, so I'm doing the rename here.
BUG=None
TEST=N/A
Review URL: http://codereview.chromium.org/8870002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/interface_list.cc')
-rw-r--r-- | ppapi/proxy/interface_list.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc index f03a580..da978e1 100644 --- a/ppapi/proxy/interface_list.cc +++ b/ppapi/proxy/interface_list.cc @@ -94,7 +94,7 @@ #include "ppapi/proxy/ppp_video_decoder_proxy.h" #include "ppapi/proxy/resource_creation_proxy.h" #include "ppapi/shared_impl/ppb_opengles2_shared.h" -#include "ppapi/shared_impl/ppb_var_impl.h" +#include "ppapi/shared_impl/ppb_var_shared.h" #include "ppapi/thunk/thunk.h" // Helper to get the proxy name PPB_Foo_Proxy given the API name PPB_Foo. @@ -166,9 +166,9 @@ InterfaceList::InterfaceList() { AddPPB(PPB_OPENGLES2_INTERFACE, API_ID_NONE, PPB_OpenGLES2_Shared::GetInterface()); AddPPB(PPB_VAR_INTERFACE, API_ID_NONE, - PPB_Var_Impl::GetVarInterface()); + PPB_Var_Shared::GetVarInterface()); AddPPB(PPB_VAR_INTERFACE_1_0, API_ID_NONE, - PPB_Var_Impl::GetVarInterface1_0()); + PPB_Var_Shared::GetVarInterface1_0()); AddFlashInterfaces(); |