| Index: ppapi/proxy/ppb_var_unittest.cc
|
| diff --git a/ppapi/proxy/ppb_var_unittest.cc b/ppapi/proxy/ppb_var_unittest.cc
|
| index 7315d00b72ac4e71f5061f125aa6527b04a95d99..5e25379eeb0213f5c9ef6793a36885fb262ba44a 100644
|
| --- a/ppapi/proxy/ppb_var_unittest.cc
|
| +++ b/ppapi/proxy/ppb_var_unittest.cc
|
| @@ -30,7 +30,7 @@ class PPB_VarTest : public PluginProxyTest {
|
| public:
|
| PPB_VarTest()
|
| : test_strings_(kNumStrings), vars_(kNumStrings),
|
| - ppb_var_(ppapi::PPB_Var_Shared::GetVarInterface1_1()) {
|
| + ppb_var_(ppapi::PPB_Var_Shared::GetVarInterface1_2()) {
|
| // Set the value of test_strings_[i] to "i".
|
| for (size_t i = 0; i < kNumStrings; ++i)
|
| test_strings_[i] = base::IntToString(i);
|
| @@ -102,7 +102,7 @@ class CreateVarThreadDelegate : public base::PlatformThread::Delegate {
|
| }
|
| virtual ~CreateVarThreadDelegate() {}
|
| virtual void ThreadMain() {
|
| - const PPB_Var* ppb_var = ppapi::PPB_Var_Shared::GetVarInterface1_1();
|
| + const PPB_Var* ppb_var = ppapi::PPB_Var_Shared::GetVarInterface1_2();
|
| for (size_t i = 0; i < size_; ++i) {
|
| vars_out_[i] = ppb_var->VarFromUtf8(strings_in_[i].c_str(),
|
| strings_in_[i].length());
|
| @@ -125,7 +125,7 @@ class ChangeRefVarThreadDelegate : public base::PlatformThread::Delegate {
|
| }
|
| virtual ~ChangeRefVarThreadDelegate() {}
|
| virtual void ThreadMain() {
|
| - const PPB_Var* ppb_var = ppapi::PPB_Var_Shared::GetVarInterface1_1();
|
| + const PPB_Var* ppb_var = ppapi::PPB_Var_Shared::GetVarInterface1_2();
|
| // Increment and decrement the reference count for each var kRefsToAdd
|
| // times. Note that we always AddRef once before doing the matching Release,
|
| // to ensure that we never accidentally release the last reference.
|
| @@ -153,7 +153,7 @@ class RemoveRefVarThreadDelegate : public base::PlatformThread::Delegate {
|
| }
|
| virtual ~RemoveRefVarThreadDelegate() {}
|
| virtual void ThreadMain() {
|
| - const PPB_Var* ppb_var = ppapi::PPB_Var_Shared::GetVarInterface1_1();
|
| + const PPB_Var* ppb_var = ppapi::PPB_Var_Shared::GetVarInterface1_2();
|
| for (size_t i = 0; i < kNumStrings; ++i) {
|
| ppb_var->Release(vars_[i]);
|
| }
|
|
|