summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authorpolina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-08 03:29:52 +0000
committerpolina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-08 03:29:52 +0000
commit2148db9477774635644a6643d7b23fada6ab72fd (patch)
treee4b6e70d450a2389b1c8cbeab95f61dc9d6139e1 /ppapi
parent65d68da4806e736a53cf263cbeba8fcae6c06b87 (diff)
downloadchromium_src-2148db9477774635644a6643d7b23fada6ab72fd.zip
chromium_src-2148db9477774635644a6643d7b23fada6ab72fd.tar.gz
chromium_src-2148db9477774635644a6643d7b23fada6ab72fd.tar.bz2
NaCl Proxy Test: remove debugging printf's that got accidentally committed.
TBR=sehr@google.com BUG=none TEST=this is Review URL: http://codereview.chromium.org/7850010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100092 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/native_client/tests/ppapi_browser/ppb_fullscreen/ppapi_ppb_fullscreen.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/ppapi/native_client/tests/ppapi_browser/ppb_fullscreen/ppapi_ppb_fullscreen.cc b/ppapi/native_client/tests/ppapi_browser/ppb_fullscreen/ppapi_ppb_fullscreen.cc
index 39756fe..3ebe32f 100644
--- a/ppapi/native_client/tests/ppapi_browser/ppb_fullscreen/ppapi_ppb_fullscreen.cc
+++ b/ppapi/native_client/tests/ppapi_browser/ppb_fullscreen/ppapi_ppb_fullscreen.cc
@@ -92,29 +92,21 @@ bool g_fullscreen_pending = false;
void TestSetFullscreenTrue() {
printf("--- TestSetFullscreenTrue\n");
const PPB_Fullscreen_Dev* ppb = PPBFullscreenDev();
- printf("--- 1\n");
if (ppb->IsFullscreen(pp_instance()) == PP_FALSE) {
EXPECT(CreateGraphics2D(&g_graphics2d));
- printf("--- 2\n");
// The transition is asynchronous and ends at the next DidChangeView().
g_fullscreen_pending = true;
EXPECT(ppb->SetFullscreen(pp_instance(), PP_TRUE) == PP_TRUE);
- printf("--- 3\n");
EXPECT(ppb->IsFullscreen(pp_instance()) == PP_FALSE);
- printf("--- 4\n");
// No 2D or 3D device can be bound during transition.
EXPECT(PPBGraphics2D()->IsGraphics2D(g_graphics2d) == PP_TRUE);
- printf("--- 5\n");
EXPECT(PPBInstance()->BindGraphics(pp_instance(), g_graphics2d) ==
PP_FALSE);
- printf("--- 6\n");
// The transition ends at the next DidChangeView().
} else {
// No change.
EXPECT(ppb->SetFullscreen(pp_instance(), PP_TRUE) == PP_TRUE);
- printf("--- 22\n");
EXPECT(ppb->IsFullscreen(pp_instance()) == PP_TRUE);
- printf("--- 33\n");
TEST_PASSED;
}
}