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

Side by Side Diff: chrome/browser/resources/net_internals/index.js

Issue 7530020: Re-design the "data" tab on about:net-internals. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address mmenke's comments Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 <include src="util.js"/> 5 <include src="util.js"/>
6 <include src="view.js"/> 6 <include src="view.js"/>
7 <include src="tab_switcher_view.js"/> 7 <include src="tab_switcher_view.js"/>
8 <include src="data_view.js"/> 8 <include src="import_view.js"/>
9 <include src="capture_view.js"/>
10 <include src="export_view.js"/>
9 <include src="http_cache_view.js"/> 11 <include src="http_cache_view.js"/>
10 <include src="test_view.js"/> 12 <include src="test_view.js"/>
11 <include src="hsts_view.js"/> 13 <include src="hsts_view.js"/>
12 <include src="browser_bridge.js"/> 14 <include src="browser_bridge.js"/>
13 <include src="source_tracker.js"/> 15 <include src="source_tracker.js"/>
14 <include src="main.js"/> 16 <include src="main.js"/>
15 <include src="dns_view.js"/> 17 <include src="dns_view.js"/>
16 <include src="source_row.js"/> 18 <include src="source_row.js"/>
17 <include src="events_view.js"/> 19 <include src="events_view.js"/>
18 <include src="details_view.js"/> 20 <include src="details_view.js"/>
(...skipping 11 matching lines...) Expand all
30 <include src="http_throttling_view.js"/> 32 <include src="http_throttling_view.js"/>
31 <include src="logs_view.js"/> 33 <include src="logs_view.js"/>
32 <include src="prerender_view.js"/> 34 <include src="prerender_view.js"/>
33 35
34 document.addEventListener('DOMContentLoaded', function () { 36 document.addEventListener('DOMContentLoaded', function () {
35 $('reloaded-link').addEventListener('click', function () { 37 $('reloaded-link').addEventListener('click', function () {
36 history.go(0); 38 history.go(0);
37 }); 39 });
38 onLoaded(); // from main.js 40 onLoaded(); // from main.js
39 }); 41 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/index.html ('k') | chrome/browser/resources/net_internals/main.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698