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

Unified Diff: src/base/utils/random-number-generator.h

Issue 358363002: Move platform abstraction to base library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 6 months 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: src/base/utils/random-number-generator.h
diff --git a/src/utils/random-number-generator.h b/src/base/utils/random-number-generator.h
similarity index 94%
rename from src/utils/random-number-generator.h
rename to src/base/utils/random-number-generator.h
index 6b077eebdd77539abe233eebca9688df45a64446..5955d6659761b4a7b5bf46ad1113a1a4ed22f7fb 100644
--- a/src/utils/random-number-generator.h
+++ b/src/base/utils/random-number-generator.h
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_UTILS_RANDOM_NUMBER_GENERATOR_H_
-#define V8_UTILS_RANDOM_NUMBER_GENERATOR_H_
+#ifndef V8_BASE_UTILS_RANDOM_NUMBER_GENERATOR_H_
+#define V8_BASE_UTILS_RANDOM_NUMBER_GENERATOR_H_
#include "src/base/macros.h"
namespace v8 {
-namespace internal {
+namespace base {
// -----------------------------------------------------------------------------
// RandomNumberGenerator
@@ -84,6 +84,6 @@ class RandomNumberGenerator V8_FINAL {
int64_t seed_;
};
-} } // namespace v8::internal
+} } // namespace v8::base
-#endif // V8_UTILS_RANDOM_NUMBER_GENERATOR_H_
+#endif // V8_BASE_UTILS_RANDOM_NUMBER_GENERATOR_H_

Powered by Google App Engine
This is Rietveld 408576698