Index: content/browser/gpu/gpu_functional_browsertest.cc |
diff --git a/content/browser/gpu/gpu_functional_browsertest.cc b/content/browser/gpu/gpu_functional_browsertest.cc |
index a07bbc51b39cf6668c75e2491fed4210a335a993..6d31c2ae4d8d140ef94ab7be7d8a285037310f8f 100644 |
--- a/content/browser/gpu/gpu_functional_browsertest.cc |
+++ b/content/browser/gpu/gpu_functional_browsertest.cc |
@@ -85,10 +85,11 @@ class GpuFunctionalTest : public ContentBrowserTest { |
bool result = false; |
BrowserThread::PostTaskAndReply( |
- BrowserThread::IO, FROM_HERE, |
+ BrowserThread::IO, |
+ FROM_HERE, |
base::Bind(&VerifyGPUProcessLaunch, &result), |
- MessageLoop::QuitClosure()); |
- MessageLoop::current()->Run(); |
+ base::MessageLoop::QuitClosure()); |
+ base::MessageLoop::current()->Run(); |
EXPECT_TRUE(result); |
} |