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

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

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review fixes. Lots. 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
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 22 matching lines...) Expand all
33 spdy: true, 33 spdy: true,
34 quic: true, 34 quic: true,
35 httpCache: true, 35 httpCache: true,
36 modules: true, 36 modules: true,
37 tests: true, 37 tests: true,
38 hsts: true, 38 hsts: true,
39 logs: cr.isChromeOS, 39 logs: cr.isChromeOS,
40 prerender: true, 40 prerender: true,
41 bandwidth: true, 41 bandwidth: true,
42 chromeos: cr.isChromeOS, 42 chromeos: cr.isChromeOS,
43 visualizer: cr.isChromeOS 43 visualizer: cr.isChromeOS,
44 sdch: true
mmenke 2014/10/03 18:59:27 nit: It's not done consistently, but this should
baranovich 2014/10/27 20:49:24 Done.
44 }; 45 };
45 46
46 NetInternalsTest.checkTabHandleVisibility(tabVisibilityState, true); 47 NetInternalsTest.checkTabHandleVisibility(tabVisibilityState, true);
47 48
48 testDone(); 49 testDone();
49 }); 50 });
50 51
51 })(); // Anonymous namespace 52 })(); // Anonymous namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698