summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppb_var_deprecated_proxy.cc
diff options
context:
space:
mode:
authordmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-08 04:51:14 +0000
committerdmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-08 04:51:14 +0000
commitd989cce292e1696f5bf26d0e0bdb64bdd0090168 (patch)
treeaf0deed23b5a9f3e637832a30fb3f8aa1808979e /ppapi/proxy/ppb_var_deprecated_proxy.cc
parentf001bd6a14612d0d547539c5a7a3cf53f95e3816 (diff)
downloadchromium_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/ppb_var_deprecated_proxy.cc')
-rw-r--r--ppapi/proxy/ppb_var_deprecated_proxy.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/proxy/ppb_var_deprecated_proxy.cc b/ppapi/proxy/ppb_var_deprecated_proxy.cc
index f81f319..7cf4790 100644
--- a/ppapi/proxy/ppb_var_deprecated_proxy.cc
+++ b/ppapi/proxy/ppb_var_deprecated_proxy.cc
@@ -22,7 +22,7 @@
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/ppp_class_proxy.h"
#include "ppapi/proxy/serialized_var.h"
-#include "ppapi/shared_impl/ppb_var_impl.h"
+#include "ppapi/shared_impl/ppb_var_shared.h"
#include "ppapi/shared_impl/var.h"
namespace ppapi {
@@ -277,10 +277,10 @@ PPB_Var_Deprecated_Proxy::~PPB_Var_Deprecated_Proxy() {
// static
const InterfaceProxy::Info* PPB_Var_Deprecated_Proxy::GetInfo() {
static const PPB_Var_Deprecated var_deprecated_interface = {
- ppapi::PPB_Var_Impl::GetVarInterface1_0()->AddRef,
- ppapi::PPB_Var_Impl::GetVarInterface1_0()->Release,
- ppapi::PPB_Var_Impl::GetVarInterface1_0()->VarFromUtf8,
- ppapi::PPB_Var_Impl::GetVarInterface1_0()->VarToUtf8,
+ ppapi::PPB_Var_Shared::GetVarInterface1_0()->AddRef,
+ ppapi::PPB_Var_Shared::GetVarInterface1_0()->Release,
+ ppapi::PPB_Var_Shared::GetVarInterface1_0()->VarFromUtf8,
+ ppapi::PPB_Var_Shared::GetVarInterface1_0()->VarToUtf8,
&HasProperty,
&HasMethod,
&GetProperty,