+2013-03-01 Alexei Filippov <alph@chromium.org>
+
+ Web Inspector: fix closure compiler warnings in ProfilesPanel
+ https://bugs.webkit.org/show_bug.cgi?id=111163
+
+ Reviewed by Vsevolod Vlasov.
+
+ * inspector/front-end/ProfileLauncherView.js:
+ (WebInspector.ProfileLauncherView.prototype.addProfileType):
+ * inspector/front-end/ProfilesPanel.js:
+
2013-03-01 Victor Carbune <vcarbune@chromium.org>
Support padding, margin and border for internal UA cue styling
this._registerProfileType(new WebInspector.CPUProfileType());
}
-WebInspector.CPUProfilerPanel.prototype.__proto__ = WebInspector.ProfilesPanel.prototype;
+WebInspector.CPUProfilerPanel.prototype = {
+ __proto__: WebInspector.ProfilesPanel.prototype
+}
/**
this._registerProfileType(new WebInspector.CSSSelectorProfileType());
}
-WebInspector.CSSSelectorProfilerPanel.prototype.__proto__ = WebInspector.ProfilesPanel.prototype;
+WebInspector.CSSSelectorProfilerPanel.prototype = {
+ __proto__: WebInspector.ProfilesPanel.prototype
+}
/**
this._registerProfileType(new WebInspector.HeapSnapshotProfileType());
}
-WebInspector.HeapProfilerPanel.prototype.__proto__ = WebInspector.ProfilesPanel.prototype;
+WebInspector.HeapProfilerPanel.prototype = {
+ __proto__: WebInspector.ProfilesPanel.prototype
+}
/**
this._registerProfileType(new WebInspector.CanvasProfileType());
}
-WebInspector.CanvasProfilerPanel.prototype.__proto__ = WebInspector.ProfilesPanel.prototype;
+WebInspector.CanvasProfilerPanel.prototype = {
+ __proto__: WebInspector.ProfilesPanel.prototype
+}
/**
this._registerProfileType(new WebInspector.NativeMemoryProfileType());
}
-WebInspector.MemoryChartProfilerPanel.prototype.__proto__ = WebInspector.ProfilesPanel.prototype;
+WebInspector.MemoryChartProfilerPanel.prototype = {
+ __proto__: WebInspector.ProfilesPanel.prototype
+}
/**
this._registerProfileType(new WebInspector.NativeSnapshotProfileType());
}
-WebInspector.NativeMemoryProfilerPanel.prototype.__proto__ = WebInspector.ProfilesPanel.prototype;
+WebInspector.NativeMemoryProfilerPanel.prototype = {
+ __proto__: WebInspector.ProfilesPanel.prototype
+}
importScript("ProfileDataGridTree.js");