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

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

Issue 2785493003: Disable SDCH by Default (Closed)
Patch Set: Clean up IOS compilation errors and remove from IOS OTR profile. Created 3 years, 8 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
« no previous file with comments | « chrome/common/chrome_constants.cc ('k') | chrome/test/data/webui/net_internals/sdch_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /** 5 /**
6 * @fileoverview This file contains tests for creating and loading log files. 6 * @fileoverview This file contains tests for creating and loading log files.
7 * It also tests the stop capturing button, since it both creates and then loads 7 * It also tests the stop capturing button, since it both creates and then loads
8 * a log dump. 8 * a log dump.
9 */ 9 */
10 10
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 export: true, 167 export: true,
168 import: true, 168 import: true,
169 proxy: true, 169 proxy: true,
170 events: true, 170 events: true,
171 timeline: true, 171 timeline: true,
172 dns: true, 172 dns: true,
173 sockets: true, 173 sockets: true,
174 http2: true, 174 http2: true,
175 quic: true, 175 quic: true,
176 'alt-svc': true, 176 'alt-svc': true,
177 sdch: true, 177 sdch: false,
178 httpCache: true, 178 httpCache: true,
179 modules: true, 179 modules: true,
180 hsts: false, 180 hsts: false,
181 prerender: true, 181 prerender: true,
182 bandwidth: true, 182 bandwidth: true,
183 chromeos: false 183 chromeos: false
184 }; 184 };
185 NetInternalsTest.checkTabLinkVisibility(tabVisibilityState, false); 185 NetInternalsTest.checkTabLinkVisibility(tabVisibilityState, false);
186 } 186 }
187 187
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 taskQueue.addFunctionTask(checkPrivacyStripping.bind(null, true)); 324 taskQueue.addFunctionTask(checkPrivacyStripping.bind(null, true));
325 taskQueue.addTask(new CreateAndLoadLogTask('Detailed explanation.')); 325 taskQueue.addTask(new CreateAndLoadLogTask('Detailed explanation.'));
326 taskQueue.addFunctionTask(checkViewsAfterLogLoaded); 326 taskQueue.addFunctionTask(checkViewsAfterLogLoaded);
327 taskQueue.run(); 327 taskQueue.run();
328 328
329 // Simulate clicking the stop button. 329 // Simulate clicking the stop button.
330 $(CaptureView.STOP_BUTTON_ID).click(); 330 $(CaptureView.STOP_BUTTON_ID).click();
331 }); 331 });
332 332
333 })(); // Anonymous namespace 333 })(); // Anonymous namespace
OLDNEW
« no previous file with comments | « chrome/common/chrome_constants.cc ('k') | chrome/test/data/webui/net_internals/sdch_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698