Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / v8 / test / cctest / test-strtod.cc
index 7fed67d..7c11186 100644 (file)
 
 #include "src/v8.h"
 
+#include "src/base/utils/random-number-generator.h"
 #include "src/bignum.h"
 #include "src/diy-fp.h"
 #include "src/double.h"
 #include "src/strtod.h"
-#include "src/utils/random-number-generator.h"
 #include "test/cctest/cctest.h"
 
 using namespace v8::internal;
@@ -449,7 +449,7 @@ static const int kShortStrtodRandomCount = 2;
 static const int kLargeStrtodRandomCount = 2;
 
 TEST(RandomStrtod) {
-  RandomNumberGenerator rng;
+  v8::base::RandomNumberGenerator rng;
   char buffer[kBufferSize];
   for (int length = 1; length < 15; length++) {
     for (int i = 0; i < kShortStrtodRandomCount; ++i) {