Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js |
| index 92761c6e28f398b04dcd0ecad16cd9081a7ef6f7..71c1b5ead1e010f2558c00c335fae56bfbc37a8c 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js |
| @@ -64,7 +64,7 @@ Sources.EventListenerBreakpointsSidebarPane = class extends UI.VBox { |
| 'pointercancel', 'gotpointercapture', 'lostpointercapture' |
| ]); |
| this._createCategory(Common.UIString('Script'), ['scriptFirstStatement', 'scriptBlockedByCSP'], true); |
| - this._createCategory(Common.UIString('Timer'), ['setTimer', 'clearTimer', 'timerFired'], true); |
| + this._createCategory(Common.UIString('Timer'), ['setTimeout', 'clearTimeout', 'timerFired'], true); |
|
caseq
2017/02/21 21:04:27
should it also mention interval?
|
| this._createCategory(Common.UIString('Touch'), ['touchstart', 'touchmove', 'touchend', 'touchcancel']); |
| this._createCategory(Common.UIString('Window'), ['DOMWindow.close'], true); |
| this._createCategory( |
| @@ -86,8 +86,8 @@ Sources.EventListenerBreakpointsSidebarPane = class extends UI.VBox { |
| static eventNameForUI(eventName, auxData) { |
| if (!Sources.EventListenerBreakpointsSidebarPane._eventNamesForUI) { |
| Sources.EventListenerBreakpointsSidebarPane._eventNamesForUI = { |
| - 'instrumentation:setTimer': Common.UIString('Set Timer'), |
| - 'instrumentation:clearTimer': Common.UIString('Clear Timer'), |
| + 'instrumentation:setTimeout': Common.UIString('Set Timer'), |
| + 'instrumentation:clearTimeout': Common.UIString('Clear Timer'), |
| 'instrumentation:timerFired': Common.UIString('Timer Fired'), |
| 'instrumentation:scriptFirstStatement': Common.UIString('Script First Statement'), |
| 'instrumentation:scriptBlockedByCSP': Common.UIString('Script Blocked by Content Security Policy'), |