| Index: third_party/WebKit/Source/wtf/testing/RunAllTests.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/testing/RunAllTests.cpp b/third_party/WebKit/Source/wtf/testing/RunAllTests.cpp
|
| index 8e2bac7a0137dfec3731310ddbea5137d27d8027..6f44eaa43009f90e78b83a676e0e6b100ab93ae0 100644
|
| --- a/third_party/WebKit/Source/wtf/testing/RunAllTests.cpp
|
| +++ b/third_party/WebKit/Source/wtf/testing/RunAllTests.cpp
|
| @@ -34,15 +34,13 @@
|
| #include <base/test/test_suite.h>
|
| #include <string.h>
|
|
|
| -static double CurrentTime()
|
| -{
|
| - return 0.0;
|
| +static double CurrentTime() {
|
| + return 0.0;
|
| }
|
|
|
| -int main(int argc, char** argv)
|
| -{
|
| - WTF::setAlwaysZeroRandomSourceForTesting();
|
| - WTF::initialize(CurrentTime, nullptr, nullptr, nullptr);
|
| - WTF::initializeMainThread(0);
|
| - return base::RunUnitTestsUsingBaseTestSuite(argc, argv);
|
| +int main(int argc, char** argv) {
|
| + WTF::setAlwaysZeroRandomSourceForTesting();
|
| + WTF::initialize(CurrentTime, nullptr, nullptr, nullptr);
|
| + WTF::initializeMainThread(0);
|
| + return base::RunUnitTestsUsingBaseTestSuite(argc, argv);
|
| }
|
|
|