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

Unified Diff: ppapi/tests/test_var_resource.cc

Issue 148213016: [PPAPI] Moving pp::VarResource_Dev API into pp::Var (now stable). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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
Index: ppapi/tests/test_var_resource.cc
diff --git a/ppapi/tests/test_var_resource.cc b/ppapi/tests/test_var_resource.cc
index bf5c02e805a1aef5c4103cb605ccb0c150d4cbb8..c3c6caa48d58a58bc549ba91ced317aa871f2e1b 100644
--- a/ppapi/tests/test_var_resource.cc
+++ b/ppapi/tests/test_var_resource.cc
@@ -19,8 +19,8 @@ bool TestVarResource::Init() {
pp::Module::Get()->GetBrowserInterface(PPB_FILESYSTEM_INTERFACE));
var_interface_ = static_cast<const PPB_Var*>(
pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE));
- var_resource_interface_ = static_cast<const PPB_VarResource_Dev*>(
- pp::Module::Get()->GetBrowserInterface(PPB_VAR_RESOURCE_DEV_INTERFACE));
+ var_resource_interface_ = static_cast<const PPB_VarResource*>(
+ pp::Module::Get()->GetBrowserInterface(PPB_VAR_RESOURCE_INTERFACE));
return core_interface_ && file_system_interface_ && var_interface_ &&
var_resource_interface_ && CheckTestingInterface();
}

Powered by Google App Engine
This is Rietveld 408576698