| Index: third_party/WebKit/Source/devtools/front_end/screencast/ScreencastApp.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastApp.js b/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastApp.js
|
| index 6946291f54b45eed06cf5fb000e19a030bc83246..25f1ac096d0ee1630eaddb6b177c43f4c99cfc96 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastApp.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastApp.js
|
| @@ -11,7 +11,7 @@
|
| this._enabledSetting = Common.settings.createSetting('screencastEnabled', true);
|
| this._toggleButton = new UI.ToolbarToggle(Common.UIString('Toggle screencast'), 'largeicon-phone');
|
| this._toggleButton.setToggled(this._enabledSetting.get());
|
| - this._toggleButton.addEventListener(UI.ToolbarButton.Events.Click, this._toggleButtonClicked, this);
|
| + this._toggleButton.addEventListener('click', this._toggleButtonClicked, this);
|
| SDK.targetManager.observeTargets(this);
|
| }
|
|
|
|
|