Index: ppapi/tests/test_var_deprecated.h |
=================================================================== |
--- ppapi/tests/test_var_deprecated.h (revision 91865) |
+++ ppapi/tests/test_var_deprecated.h (working copy) |
@@ -7,7 +7,7 @@ |
#include <string> |
-#include "ppapi/cpp/private/var_private.h" |
+#include "ppapi/cpp/var.h" |
#include "ppapi/tests/test_case.h" |
struct PPB_Var_Deprecated; |
@@ -20,7 +20,7 @@ |
virtual bool Init(); |
virtual void RunTest(); |
- void set_var_from_page(const pp::VarPrivate& v) { var_from_page_ = v; } |
+ void set_var_from_page(const pp::Var& v) { var_from_page_ = v; } |
protected: |
// Test case protected overrides. |
@@ -41,7 +41,7 @@ |
const PPB_Var_Deprecated* var_interface_; |
// Saves the var from when a value is set on the test from the page. |
- pp::VarPrivate var_from_page_; |
+ pp::Var var_from_page_; |
}; |
#endif // PPAPI_TEST_TEST_VAR_DEPRECATED_H_ |