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

Unified Diff: ppapi/tests/test_graphics_2d.cc

Issue 7055002: Fix PPAPI ui_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable transport test Created 9 years, 7 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
« no previous file with comments | « ppapi/tests/test_case.html ('k') | ppapi/tests/test_image_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_graphics_2d.cc
diff --git a/ppapi/tests/test_graphics_2d.cc b/ppapi/tests/test_graphics_2d.cc
index 32f12cde587e0a2707160a08d776e4965d5f29e7..28483b4f0e2da6c86c430df3762f4844fde8d3b8 100644
--- a/ppapi/tests/test_graphics_2d.cc
+++ b/ppapi/tests/test_graphics_2d.cc
@@ -243,12 +243,12 @@ std::string TestGraphics2D::TestInvalidSize() {
size.width = 16;
size.height = -16;
ASSERT_FALSE(!!graphics_2d_interface_->Create(
- pp::Module::Get()->pp_module(), &size, PP_FALSE));
+ instance_->pp_instance(), &size, PP_FALSE));
size.width = -16;
size.height = 16;
ASSERT_FALSE(!!graphics_2d_interface_->Create(
- pp::Module::Get()->pp_module(), &size, PP_FALSE));
+ instance_->pp_instance(), &size, PP_FALSE));
PASS();
}
« no previous file with comments | « ppapi/tests/test_case.html ('k') | ppapi/tests/test_image_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698