| 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 664b05cf96b6bcbf5b063d8ce1f9cede838b80e3..0e09b19d7c0de1f530fc4b8e4e1deae9d219bc01 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
|
| @@ -56,7 +56,7 @@ WebInspector.ProfileLauncherView = function(profilesPanel)
|
| this._loadButton = createTextButton(WebInspector.UIString("Load"), this._loadButtonClicked.bind(this), "load-profile");
|
| this._contentElement.appendChild(this._loadButton);
|
| WebInspector.targetManager.observeTargets(this);
|
| -}
|
| +};
|
|
|
| WebInspector.ProfileLauncherView.prototype = {
|
| /**
|
| @@ -158,7 +158,7 @@ WebInspector.ProfileLauncherView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
|
|
| /**
|
| @@ -180,12 +180,12 @@ WebInspector.MultiProfileLauncherView = function(profilesPanel)
|
| this._innerContentElement.createChild("div", "flexible-space");
|
|
|
| this._typeIdToOptionElement = {};
|
| -}
|
| +};
|
|
|
| /** @enum {symbol} */
|
| WebInspector.MultiProfileLauncherView.Events = {
|
| ProfileTypeSelected: Symbol("ProfileTypeSelected")
|
| -}
|
| +};
|
|
|
| WebInspector.MultiProfileLauncherView.prototype = {
|
| /**
|
| @@ -258,4 +258,4 @@ WebInspector.MultiProfileLauncherView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.ProfileLauncherView.prototype
|
| -}
|
| +};
|
|
|