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

Unified Diff: chrome/test/data/extensions/api_test/log_private/dump_logs/test.js

Issue 2934163002: Delete the logPrivate APIs (Closed)
Patch Set: Roll back docs changes Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/log_private/dump_logs/test.js
diff --git a/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js b/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js
deleted file mode 100644
index 58d307fd7b321169321d778888c581409e6834d4..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-chrome.test.getConfig(function(config) {
- runAllTests('http://www.test.com:' + config.testServer.port);
-});
-
-function runAllTests(testServerUrl) {
- chrome.test.runTests([
- function dumpLogsTest() {
- chrome.logPrivate.dumpLogs(function(fileEntry) {
- if (!fileEntry.name.match(/\.tar\.gz$/g)) {
- chrome.test.fail('Invalid file type: '+ fileEntry.name);
- return;
- }
-
- fileEntry.file(function(file) {
- var reader = new FileReader();
- reader.onloadend = function(e) {
- if (this.result.byteLength > 0)
- chrome.test.succeed();
- else
- chrome.test.fail('Invalid log file content');
- };
- reader.readAsArrayBuffer(file);
- },
- function() {
- chrome.test.fail('File reading error');
- });
- });
- },
- function captureNetworkEvents() {
- chrome.logPrivate.onCapturedEvents.addListener(function(entries) {
- for (var i = 0; i < entries.length; i++) {
- // Find our XHR request from below:
- if (entries[i].params && entries[i].params.url &&
- entries[i].params.url.match(/www\.test\.com/g)) {
- chrome.logPrivate.stopEventRecorder('network', function() {
- chrome.test.succeed();
- });
- }
- }
- });
- chrome.logPrivate.startEventRecorder('network', 'capture', function() {
- var req = new XMLHttpRequest();
- req.onreadystatechange = function() {}
- req.open('GET', testServerUrl, true);
- req.send();
- });
- }
- ]);
-}

Powered by Google App Engine
This is Rietveld 408576698