| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 2 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Lesser General Public | 5 * modify it under the terms of the GNU Lesser General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Lesser General Public License for more details. | 12 * Lesser General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Lesser General Public | 14 * You should have received a copy of the GNU Lesser General Public |
| 15 * License along with this library; if not, write to the Free Software | 15 * License along with this library; if not, write to the Free Software |
| 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US
A | 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US
A |
| 17 */ | 17 */ |
| 18 |
| 18 /** | 19 /** |
| 19 * @unrestricted | 20 * @unrestricted |
| 20 */ | 21 */ |
| 21 WebInspector.ResourceWebSocketFrameView = class extends WebInspector.VBox { | 22 WebInspector.ResourceWebSocketFrameView = class extends WebInspector.VBox { |
| 22 /** | 23 /** |
| 23 * @param {!WebInspector.NetworkRequest} request | 24 * @param {!WebInspector.NetworkRequest} request |
| 24 */ | 25 */ |
| 25 constructor(request) { | 26 constructor(request) { |
| 26 super(); | 27 super(); |
| 27 this.registerRequiredCSS('network/webSocketFrameView.css'); | 28 this.registerRequiredCSS('network/webSocketFrameView.css'); |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 }; | 246 }; |
| 246 | 247 |
| 247 /** | 248 /** |
| 248 * @param {!WebInspector.ResourceWebSocketFrameNode} a | 249 * @param {!WebInspector.ResourceWebSocketFrameNode} a |
| 249 * @param {!WebInspector.ResourceWebSocketFrameNode} b | 250 * @param {!WebInspector.ResourceWebSocketFrameNode} b |
| 250 * @return {number} | 251 * @return {number} |
| 251 */ | 252 */ |
| 252 WebInspector.ResourceWebSocketFrameNodeTimeComparator = function(a, b) { | 253 WebInspector.ResourceWebSocketFrameNodeTimeComparator = function(a, b) { |
| 253 return a._frame.time - b._frame.time; | 254 return a._frame.time - b._frame.time; |
| 254 }; | 255 }; |
| OLD | NEW |