diff options
Diffstat (limited to 'ppapi/tests/test_url_util.cc')
-rw-r--r-- | ppapi/tests/test_url_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/tests/test_url_util.cc b/ppapi/tests/test_url_util.cc index 964060d..dc6cb47 100644 --- a/ppapi/tests/test_url_util.cc +++ b/ppapi/tests/test_url_util.cc @@ -121,7 +121,7 @@ std::string TestURLUtil::TestDocumentCanAccessDocument() { std::string TestURLUtil::TestGetDocumentURL() { pp::Var url = util_->GetDocumentURL(*instance_); ASSERT_TRUE(url.is_string()); - pp::Var window = instance_->GetWindowObject(); + pp::VarPrivate window = instance_->GetWindowObject(); pp::Var href = window.GetProperty("location").GetProperty("href"); ASSERT_TRUE(href.is_string()); // In the test framework, they should be the same. |