<rdar://75843294>
Created attachment 427072 [details] Patch
Comment on attachment 427072 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=427072&action=review r=me, nice work! > Source/WebInspectorUI/UserInterface/Controllers/GridOverlayConfigurationDiagnosticEventRecorder.js:50 > + window.addEventListener("focus", this, options); Eventually we should consolidate our various places in the code that listen for user interaction and have a class manage it. For now, it is fine to continue in this direction until we encounter perf / user input lag. > Source/WebInspectorUI/UserInterface/Controllers/GridOverlayConfigurationDiagnosticEventRecorder.js:118 > + if (this._eventSamplingTimerIdentifier) { Nit: call _stopEventSamplingTimer() rather than duplicating. > Source/WebInspectorUI/UserInterface/Controllers/GridOverlayConfigurationDiagnosticEventRecorder.js:123 > + this._eventSamplingTimerIdentifier = setTimeout(this._sampleCurrentOverlayConfiguration.bind(this), GridOverlayConfigurationDiagnosticEventRecorder.eventSamplingInterval); Nit: WI.GridOverlayConfigurationDiagnosticEventRecorder > Source/WebInspectorUI/UserInterface/Controllers/GridOverlayConfigurationDiagnosticEventRecorder.js:126 > + _stopEventSamplingTimer() Nit: _stopEventSamplingTimerIfNeeded > Source/WebInspectorUI/UserInterface/Controllers/GridOverlayConfigurationDiagnosticEventRecorder.js:142 > + if (WI.settings.debugAutoLogDiagnosticEvents.valueRespectingDebugUIAvailability) Neat. > Source/WebInspectorUI/UserInterface/Controllers/GridOverlayConfigurationDiagnosticEventRecorder.js:155 > + // Encode the configuration of overaly options as a sum of increasing powers of 10 for each overlay option that is enabled (zero if disabled), convert to string and pad with zero if necessary. Nit: overlay
Created attachment 427256 [details] Patch Carry over R+; Address code review comments
Committed r276714 (237118@main): <https://commits.webkit.org/237118@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 427256 [details].