| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Intel Inc. All rights reserved. | 3 * Copyright (C) 2012 Intel Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 this._popoverHelper = new WebInspector.PopoverHelper(this.element, this._get
PopoverAnchor.bind(this), this._showPopover.bind(this)); | 64 this._popoverHelper = new WebInspector.PopoverHelper(this.element, this._get
PopoverAnchor.bind(this), this._showPopover.bind(this)); |
| 65 | 65 |
| 66 this.element.addEventListener("mousemove", this._mouseMove.bind(this), false
); | 66 this.element.addEventListener("mousemove", this._mouseMove.bind(this), false
); |
| 67 this.element.addEventListener("mouseout", this._mouseOut.bind(this), false); | 67 this.element.addEventListener("mouseout", this._mouseOut.bind(this), false); |
| 68 this.element.addEventListener("keydown", this._keyDown.bind(this), false); | 68 this.element.addEventListener("keydown", this._keyDown.bind(this), false); |
| 69 | 69 |
| 70 this._expandOffset = 15; | 70 this._expandOffset = 15; |
| 71 } | 71 } |
| 72 | 72 |
| 73 WebInspector.TimelineView.prototype = { | 73 WebInspector.TimelineView.prototype = { |
| 74 timelineStarted: function() |
| 75 { |
| 76 }, |
| 77 |
| 78 timelineStopped: function() |
| 79 { |
| 80 }, |
| 81 |
| 74 /** | 82 /** |
| 75 * @param {?WebInspector.TimelineFrameModel} frameModel | 83 * @param {?WebInspector.TimelineFrameModel} frameModel |
| 76 */ | 84 */ |
| 77 setFrameModel: function(frameModel) | 85 setFrameModel: function(frameModel) |
| 78 { | 86 { |
| 79 this._frameModel = frameModel; | 87 this._frameModel = frameModel; |
| 80 }, | 88 }, |
| 81 | 89 |
| 82 /** | 90 /** |
| 83 * @return {!WebInspector.SplitView} | 91 * @return {!WebInspector.SplitView} |
| (...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 this._element.classList.remove("hidden"); | 1252 this._element.classList.remove("hidden"); |
| 1245 } else | 1253 } else |
| 1246 this._element.classList.add("hidden"); | 1254 this._element.classList.add("hidden"); |
| 1247 }, | 1255 }, |
| 1248 | 1256 |
| 1249 _dispose: function() | 1257 _dispose: function() |
| 1250 { | 1258 { |
| 1251 this._element.remove(); | 1259 this._element.remove(); |
| 1252 } | 1260 } |
| 1253 } | 1261 } |
| OLD | NEW |