| OLD | NEW |
| 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 14 matching lines...) Expand all Loading... |
| 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 waterfall: true, | 29 waterfall: true, |
| 30 timeline: true, | 30 timeline: true, |
| 31 dns: true, | 31 dns: true, |
| 32 sockets: true, | 32 sockets: true, |
| 33 spdy: true, | 33 spdy: true, |
| 34 quic: true, | 34 quic: true, |
| 35 sdch: true, | |
| 36 httpCache: true, | 35 httpCache: true, |
| 37 modules: true, | 36 modules: true, |
| 38 tests: true, | 37 tests: true, |
| 39 hsts: true, | 38 hsts: true, |
| 40 logs: cr.isChromeOS, | 39 logs: cr.isChromeOS, |
| 41 prerender: true, | 40 prerender: true, |
| 42 bandwidth: true, | 41 bandwidth: true, |
| 43 chromeos: cr.isChromeOS, | 42 chromeos: cr.isChromeOS, |
| 44 visualizer: cr.isChromeOS | 43 visualizer: cr.isChromeOS |
| 45 }; | 44 }; |
| 46 | 45 |
| 47 NetInternalsTest.checkTabHandleVisibility(tabVisibilityState, true); | 46 NetInternalsTest.checkTabHandleVisibility(tabVisibilityState, true); |
| 48 | 47 |
| 49 testDone(); | 48 testDone(); |
| 50 }); | 49 }); |
| 51 | 50 |
| 52 })(); // Anonymous namespace | 51 })(); // Anonymous namespace |
| OLD | NEW |