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

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

Issue 329853010: Additional methods for chrome.logPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: all works Created 6 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
new file mode 100644
index 0000000000000000000000000000000000000000..eb478852d4fa38c96bffefa128378032bfd1a795
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js
@@ -0,0 +1,23 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
Zachary Kuznia 2014/06/25 00:05:53 nit: no (c)
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+chrome.test.runTests([
+ function dumpLogsTest() {
+ chrome.logPrivate.dumpLogs(function(fileEntry) {
+ fileEntry.file(function(file) {
+ var reader = new FileReader();
+ reader.onloadend = function(e) {
+ if (this.result == 'log file content')
+ chrome.test.succeed();
+ else
+ chrome.test.fail('Invalid log file content');
+ };
+ reader.readAsText(file);
+ },
+ function() {
+ chrome.test.fail('File reading error');
+ });
+ });
+ }
+]);

Powered by Google App Engine
This is Rietveld 408576698