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

Side by Side Diff: chrome/test/data/webui/net_internals/main.js

Issue 11635023: First cut at UI for saving net_logs data into a temporary file on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 test fixture. 5 // Include test fixture.
6 GEN_INCLUDE(['net_internals_test.js']); 6 GEN_INCLUDE(['net_internals_test.js']);
7 7
8 // Anonymous namespace 8 // Anonymous namespace
9 (function() { 9 (function() {
10 10
(...skipping 11 matching lines...) Expand all
22 // Expected visibility state of each tab. 22 // Expected visibility state of each tab.
23 var tabVisibilityState = { 23 var tabVisibilityState = {
24 capture: true, 24 capture: true,
25 export: true, 25 export: true,
26 import: true, 26 import: true,
27 proxy: true, 27 proxy: true,
28 events: true, 28 events: true,
29 timeline: true, 29 timeline: true,
30 dns: true, 30 dns: true,
31 sockets: true, 31 sockets: true,
32 mobile: cr.isMobile,
32 spdy: true, 33 spdy: true,
33 httpPipeline: true, 34 httpPipeline: true,
34 httpCache: true, 35 httpCache: true,
35 serviceProviders: cr.isWindows, 36 serviceProviders: cr.isWindows,
36 tests: true, 37 tests: true,
37 hsts: true, 38 hsts: true,
38 logs: cr.isChromeOS, 39 logs: cr.isChromeOS,
39 prerender: true, 40 prerender: true,
40 bandwidth: true, 41 bandwidth: true,
41 chromeos: cr.isChromeOS 42 chromeos: cr.isChromeOS
42 }; 43 };
43 44
44 NetInternalsTest.checkTabHandleVisibility(tabVisibilityState, true); 45 NetInternalsTest.checkTabHandleVisibility(tabVisibilityState, true);
45 46
46 testDone(); 47 testDone();
47 }); 48 });
48 49
49 })(); // Anonymous namespace 50 })(); // Anonymous namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698