Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(898)

Side by Side Diff: Source/devtools/front_end/components/FlameChart.js

Issue 668683002: DevTools: remove style reuse from flamechart clients, prepare it to become a component. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/devtools/front_end/flameChart.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/flameChart.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698