Index: content/common/gpu/client/gpu_context_tests.h |
diff --git a/content/common/gpu/client/gpu_context_tests.h b/content/common/gpu/client/gpu_context_tests.h |
index 30f6daa52c22b5810f444be119ac1970560cc847..9687c4a057e0f999e891e22a2f8f286021062a5c 100644 |
--- a/content/common/gpu/client/gpu_context_tests.h |
+++ b/content/common/gpu/client/gpu_context_tests.h |
@@ -34,9 +34,8 @@ class SignalTest : public ContextTestBase { |
void TestSignalQuery(GLuint query) { |
base::RunLoop run_loop; |
context_support_->SignalQuery( |
- query, |
- base::Bind( |
- &RunOnlyOnce, run_loop.QuitClosure(), base::Owned(new int(0)))); |
+ query, base::Bind(&RunOnlyOnce, run_loop.QuitClosure(), |
+ base::Owned(new int(0)))); |
run_loop.Run(); |
} |
}; |
@@ -136,5 +135,4 @@ CONTEXT_TEST_F(SignalTest, InvalidSignalQueryUnboundTest) { |
TestSignalQuery(928729082); |
TestSignalQuery(928729081); |
}; |
- |
}; |