@@ -107,7 +107,7 @@ static void (*gBeginDisallowEvents)();
107
107
static void (*gEndDisallowEvents)();
108
108
static bool (*gAreEventsDisallowed)();
109
109
static bool (*gHasDivergedFromRecording)();
110
- static bool (*gIsUnhandledDivergenceAllowed )();
110
+ static bool (*gAllowSideEffects )();
111
111
static void (*gRecordReplayNewCheckpoint)();
112
112
static bool (*gRecordReplayIsReplaying)();
113
113
static int (*gCreateOrderedLock)(const char* aName);
@@ -433,7 +433,7 @@ MOZ_EXPORT void RecordReplayInterface_Initialize(int* aArgc, char*** aArgv) {
433
433
LoadSymbol("RecordReplayEndDisallowEvents", gEndDisallowEvents);
434
434
LoadSymbol("RecordReplayAreEventsDisallowed", gAreEventsDisallowed);
435
435
LoadSymbol("RecordReplayHasDivergedFromRecording", gHasDivergedFromRecording);
436
- LoadSymbol("RecordReplayIsUnhandledDivergenceAllowed ", gIsUnhandledDivergenceAllowed );
436
+ LoadSymbol("RecordReplayAllowSideEffects ", gAllowSideEffects );
437
437
LoadSymbol("RecordReplayNewCheckpoint", gRecordReplayNewCheckpoint);
438
438
LoadSymbol("RecordReplayIsReplaying", gRecordReplayIsReplaying);
439
439
LoadSymbol("RecordReplayCreateOrderedLock", gCreateOrderedLock);
@@ -665,8 +665,8 @@ MOZ_EXPORT bool RecordReplayInterface_InternalHasDivergedFromRecording() {
665
665
return gHasDivergedFromRecording();
666
666
}
667
667
668
- MOZ_EXPORT bool RecordReplayInterface_InternalIsUnhandledDivergenceAllowed () {
669
- return gIsUnhandledDivergenceAllowed ();
668
+ MOZ_EXPORT bool RecordReplayInterface_InternalAllowSideEffects () {
669
+ return gAllowSideEffects ();
670
670
}
671
671
672
672
MOZ_EXPORT int RecordReplayInterface_InternalCreateOrderedLock(const char* aName) {
0 commit comments