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

Side by Side Diff: Source/devtools/front_end/network/NetworkPanel.js

Issue 643873003: DevTools: NetworkPanel: make websocket frames table "live". (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
« no previous file with comments | « no previous file | Source/devtools/front_end/network/ResourceWebSocketFrameView.js » ('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) 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/network/ResourceWebSocketFrameView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698