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

Side by Side Diff: netlog_viewer/README.md

Issue 3011363002: Apply Chromium changes up to commit 0036296a1128ac9cbefeaff51c8df831ec421c36 (Closed)
Patch Set: README Created 3 years, 3 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
OLDNEW
1 A standalone WebApp for viewing chrome://net-export 1 A standalone WebApp for viewing chrome://net-export
2 [NetLog](https://www.chromium.org/developers/design-documents/network-stack/netl og) dump files 2 [NetLog](https://www.chromium.org/developers/design-documents/network-stack/netl og) dump files
3 ============ 3 ============
4 4
5 Introduction 5 Introduction
6 ------------ 6 ------------
7 This is a WebApp that allows someone to perform post-mortem analysis of a 7 This is a WebApp that allows someone to perform post-mortem analysis of a
8 saved NetLog dump. The initial code was taken out of Chromium. 8 saved NetLog dump. The initial code was taken out of Chromium.
9 The code should contain all changes made to net-internals up to chromium commit 9 The code should contain all changes made to net-internals up to chromium commit
10 8491b5b9060b61c2b06f51bb5dfcc8098c0cbad1. 10 0036296a1128ac9cbefeaff51c8df831ec421c36.
eroman 2017/09/19 17:14:19 Optional: Could you also paste in your instruction
xunjieli 2017/09/19 18:26:07 Done. Good point. Thanks.
11 The full design doc can be found 11 The full design doc can be found
12 [here](https://docs.google.com/document/d/1Ll7T5cguj5m2DqkUTad5DWRCqtbQ3L1q9FRvT N5-Y28/edit#). 12 [here](https://docs.google.com/document/d/1Ll7T5cguj5m2DqkUTad5DWRCqtbQ3L1q9FRvT N5-Y28/edit#).
13 13
14 Motivation 14 Motivation
15 ------------ 15 ------------
16 There are a few problems with the current system of logging network events 16 There are a few problems with the current system of logging network events
17 within Chromium (see chrome://net-internals) that motivated the design and 17 within Chromium (see chrome://net-internals) that motivated the design and
18 creation of this new project: 18 creation of this new project:
19 - Attempting to add new and improved functionalities to network logging within 19 - Attempting to add new and improved functionalities to network logging within
20 Chromium comes at the cost of bloating the Chromium binaries. 20 Chromium comes at the cost of bloating the Chromium binaries.
(...skipping 23 matching lines...) Expand all
44 Serve the files from an HTTP localhost server with: 44 Serve the files from an HTTP localhost server with:
45 45
46 python -m SimpleHTTPServer 8080 46 python -m SimpleHTTPServer 8080
47 47
48 Visit http://localhost:8080/index.html in your web browser to view the 48 Visit http://localhost:8080/index.html in your web browser to view the
49 netlog viewer. You will be able to click "Choose File" which will allow you to 49 netlog viewer. You will be able to click "Choose File" which will allow you to
50 select the file you exported earlier. From there your NetLog dump will appear 50 select the file you exported earlier. From there your NetLog dump will appear
51 as a table filled with all the dump's information. Visit the other tabs to 51 as a table filled with all the dump's information. Visit the other tabs to
52 view additional information! There are seven tabs that are currently fully 52 view additional information! There are seven tabs that are currently fully
53 functional (Import, Events, Proxy, Timeline, DNS, Sockets, Cache). 53 functional (Import, Events, Proxy, Timeline, DNS, Sockets, Cache).
OLDNEW
« no previous file with comments | « no previous file | netlog_viewer/netlog_viewer/alt_svc_view.js » ('j') | netlog_viewer/netlog_viewer/browser_bridge.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698