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

Unified Diff: third_party/WebKit/Source/wtf/testing/RunAllTests.cpp

Issue 1550563002: Blink Platform: Remove time functions from Platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
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 1e844528be5fa37ac31718ce1d781b10beb4722c..f6ffc2e039fc642c3378bbf37d4a9c6c0597d0f1 100644
--- a/third_party/WebKit/Source/wtf/testing/RunAllTests.cpp
+++ b/third_party/WebKit/Source/wtf/testing/RunAllTests.cpp
@@ -29,16 +29,12 @@
*/
#include "wtf/CryptographicallyRandomNumber.h"
+#include "wtf/CurrentTime.h"
#include "wtf/MainThread.h"
#include "wtf/WTF.h"
#include <base/test/test_suite.h>
#include <string.h>
-static double CurrentTime()
-{
- return 0.0;
-}
-
static void AlwaysZeroNumberSource(unsigned char* buf, size_t len)
{
memset(buf, '\0', len);
@@ -47,7 +43,10 @@ static void AlwaysZeroNumberSource(unsigned char* buf, size_t len)
int main(int argc, char** argv)
{
WTF::setRandomSource(AlwaysZeroNumberSource);
- WTF::initialize(CurrentTime, nullptr, nullptr, nullptr, nullptr);
+ WTF::setTimeFunctionsForTesting([]() -> double {
haraken 2015/12/28 02:24:27 Ditto.
+ return 0.0;
+ });
+ WTF::initialize(nullptr, nullptr);
WTF::initializeMainThread(0);
return base::RunUnitTestsUsingBaseTestSuite(argc, argv);
}

Powered by Google App Engine
This is Rietveld 408576698