| Index: third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| index 3976560684b8900987647b6d2e934ef3948b5308..81d4037b27650ad2690d93fa7473e979d110b2c6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
|
| @@ -63,14 +63,14 @@ WebInspector.ProfileView = function(nodeFormatter, viewTypes)
|
| this._changeView();
|
| if (this._flameChart)
|
| this._flameChart.update();
|
| -}
|
| +};
|
|
|
| /** @enum {string} */
|
| WebInspector.ProfileView.ViewTypes = {
|
| Flame: "Flame",
|
| Tree: "Tree",
|
| Heavy: "Heavy"
|
| -}
|
| +};
|
|
|
| /**
|
| * @param {!Array<!{title: string, value: string}>} entryInfo
|
| @@ -85,7 +85,7 @@ WebInspector.ProfileView.buildPopoverTable = function(entryInfo)
|
| row.createChild("td").textContent = entry.value;
|
| }
|
| return table;
|
| -}
|
| +};
|
|
|
| WebInspector.ProfileView.prototype = {
|
| focus: function()
|
| @@ -383,7 +383,7 @@ WebInspector.ProfileView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SimpleView.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -399,7 +399,7 @@ WebInspector.WritableProfileHeader = function(target, type, title)
|
| WebInspector.ProfileHeader.call(this, target, type, title || WebInspector.UIString("Profile %d", type.nextProfileUid()));
|
| this._debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
|
| this._tempFile = null;
|
| -}
|
| +};
|
|
|
| WebInspector.WritableProfileHeader.prototype = {
|
| /**
|
| @@ -605,4 +605,4 @@ WebInspector.WritableProfileHeader.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.ProfileHeader.prototype
|
| -}
|
| +};
|
|
|