Changeset 192855 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- Timestamp:
- Nov 30, 2015, 7:39:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r192751 r192855 1015 1015 // to avoid threading the input cursor through all the abstraction layers. 1016 1016 if (cursor.isCapturing()) 1017 cursor.appendInput<SetRandomSeed>(m_weakRandom.seed Unsafe());1017 cursor.appendInput<SetRandomSeed>(m_weakRandom.seed()); 1018 1018 else if (cursor.isReplaying()) { 1019 1019 if (SetRandomSeed* input = cursor.fetchInput<SetRandomSeed>()) 1020 m_weakRandom. initializeSeed(static_cast<unsigned>(input->randomSeed()));1020 m_weakRandom.setSeed(static_cast<unsigned>(input->randomSeed())); 1021 1021 } 1022 1022 }
Note:
See TracChangeset
for help on using the changeset viewer.