| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008, 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2008, 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * Copyright (C) 2011 Google Inc. All rights reserved. | 4 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 2594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2605 */ | 2605 */ |
| 2606 request: function() | 2606 request: function() |
| 2607 { | 2607 { |
| 2608 return this._request; | 2608 return this._request; |
| 2609 }, | 2609 }, |
| 2610 | 2610 |
| 2611 /** | 2611 /** |
| 2612 * @override | 2612 * @override |
| 2613 * @return {number} | 2613 * @return {number} |
| 2614 */ | 2614 */ |
| 2615 nodeSelfHeight: function() { | 2615 nodeSelfHeight: function() |
| 2616 { |
| 2616 return this._parentView.rowHeight(); | 2617 return this._parentView.rowHeight(); |
| 2617 }, | 2618 }, |
| 2618 | 2619 |
| 2619 /** override */ | 2620 /** override */ |
| 2620 createCells: function() | 2621 createCells: function() |
| 2621 { | 2622 { |
| 2622 this._nameCell = null; | 2623 this._nameCell = null; |
| 2623 this._timelineCell = null; | 2624 this._timelineCell = null; |
| 2624 this._initiatorCell = null; | 2625 this._initiatorCell = null; |
| 2625 | 2626 |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3187 | 3188 |
| 3188 WebInspector.NetworkPanelFactory.prototype = { | 3189 WebInspector.NetworkPanelFactory.prototype = { |
| 3189 /** | 3190 /** |
| 3190 * @return {!WebInspector.Panel} | 3191 * @return {!WebInspector.Panel} |
| 3191 */ | 3192 */ |
| 3192 createPanel: function() | 3193 createPanel: function() |
| 3193 { | 3194 { |
| 3194 return WebInspector.NetworkPanel._instance(); | 3195 return WebInspector.NetworkPanel._instance(); |
| 3195 } | 3196 } |
| 3196 } | 3197 } |
| OLD | NEW |