| Index: third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
|
| index 0e09b19d7c0de1f530fc4b8e4e1deae9d219bc01..d8ca6940ce75f62db1b95245982a68479b5f5512 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
|
| @@ -218,11 +218,17 @@ WebInspector.MultiProfileLauncherView.prototype = {
|
| this.dispatchEventToListeners(WebInspector.MultiProfileLauncherView.Events.ProfileTypeSelected, type);
|
| },
|
|
|
| + /**
|
| + * @override
|
| + */
|
| _controlButtonClicked: function()
|
| {
|
| this._panel.toggleRecord();
|
| },
|
|
|
| + /**
|
| + * @override
|
| + */
|
| _updateControls: function()
|
| {
|
| WebInspector.ProfileLauncherView.prototype._updateControls.call(this);
|
| @@ -245,12 +251,18 @@ WebInspector.MultiProfileLauncherView.prototype = {
|
| this._selectedProfileTypeSetting.set(profileType.id);
|
| },
|
|
|
| + /**
|
| + * @override
|
| + */
|
| profileStarted: function()
|
| {
|
| this._isProfiling = true;
|
| this._updateControls();
|
| },
|
|
|
| + /**
|
| + * @override
|
| + */
|
| profileFinished: function()
|
| {
|
| this._isProfiling = false;
|
|
|