OLD | NEW |
1 /** | 1 /** |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 /** | 44 /** |
45 * @constructor | 45 * @constructor |
46 * @extends {WebInspector.HBox} | 46 * @extends {WebInspector.HBox} |
47 * @param {!WebInspector.FlameChartDataProvider} dataProvider | 47 * @param {!WebInspector.FlameChartDataProvider} dataProvider |
48 * @param {!WebInspector.FlameChartDelegate} flameChartDelegate | 48 * @param {!WebInspector.FlameChartDelegate} flameChartDelegate |
49 * @param {boolean} isTopDown | 49 * @param {boolean} isTopDown |
50 */ | 50 */ |
51 WebInspector.FlameChart = function(dataProvider, flameChartDelegate, isTopDown) | 51 WebInspector.FlameChart = function(dataProvider, flameChartDelegate, isTopDown) |
52 { | 52 { |
53 WebInspector.HBox.call(this); | 53 WebInspector.HBox.call(this); |
| 54 this.registerRequiredCSS("flameChart.css"); |
54 this.element.classList.add("flame-chart-main-pane"); | 55 this.element.classList.add("flame-chart-main-pane"); |
55 this._flameChartDelegate = flameChartDelegate; | 56 this._flameChartDelegate = flameChartDelegate; |
56 this._isTopDown = isTopDown; | 57 this._isTopDown = isTopDown; |
57 | 58 |
58 this._calculator = new WebInspector.FlameChart.Calculator(); | 59 this._calculator = new WebInspector.FlameChart.Calculator(); |
59 | 60 |
60 this._canvas = this.element.createChild("canvas"); | 61 this._canvas = this.element.createChild("canvas"); |
61 this._canvas.tabIndex = 1; | 62 this._canvas.tabIndex = 1; |
62 this.setDefaultFocusedElement(this._canvas); | 63 this.setDefaultFocusedElement(this._canvas); |
63 this._canvas.addEventListener("mousemove", this._onMouseMove.bind(this), fal
se); | 64 this._canvas.addEventListener("mousemove", this._onMouseMove.bind(this), fal
se); |
(...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 { | 1179 { |
1179 this._highlightedMarkerIndex = -1; | 1180 this._highlightedMarkerIndex = -1; |
1180 this._highlightedEntryIndex = -1; | 1181 this._highlightedEntryIndex = -1; |
1181 this._selectedEntryIndex = -1; | 1182 this._selectedEntryIndex = -1; |
1182 this._textWidth = {}; | 1183 this._textWidth = {}; |
1183 this.update(); | 1184 this.update(); |
1184 }, | 1185 }, |
1185 | 1186 |
1186 __proto__: WebInspector.HBox.prototype | 1187 __proto__: WebInspector.HBox.prototype |
1187 } | 1188 } |
OLD | NEW |