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

Unified Diff: src/flags.h

Issue 23548024: Introduce a RandonNumberGenerator class. Refactor the random/private_random uses in Isolate/Context. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Initialize random_number_generator of Isolate lazily. Created 7 years, 3 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/flags.h
diff --git a/src/flags.h b/src/flags.h
index f0b239b6f20850b8cc4c7a643c45bb9fbcc3a437..fe182e5221cec755e4c629ffabda040e738e701a 100644
--- a/src/flags.h
+++ b/src/flags.h
@@ -24,9 +24,12 @@
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
#ifndef V8_FLAGS_H_
#define V8_FLAGS_H_
+#include "atomicops.h"
Michael Starzinger 2013/09/09 17:11:25 I am not sure why this header needs the atomicops.
Benedikt Meurer 2013/09/10 06:08:07 Because flag-definitions.h uses AtomicWord.
Michael Starzinger 2013/09/10 08:43:31 I see, didn't know that.
+
namespace v8 {
namespace internal {

Powered by Google App Engine
This is Rietveld 408576698