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

Unified Diff: chrome/test/data/extensions/api_test/socket/ppapi/controller.js

Issue 13811036: Add Pepper API tests for chrome.socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/socket/ppapi/controller.js
diff --git a/chrome/test/data/extensions/api_test/socket/ppapi/controller.js b/chrome/test/data/extensions/api_test/socket/ppapi/controller.js
new file mode 100644
index 0000000000000000000000000000000000000000..b6aa40254306b5190154dedf92dc357378ef5a76
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/socket/ppapi/controller.js
@@ -0,0 +1,34 @@
+// Copyright (c) 2013 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.
+
+var control_message;
+
+function testAll() {
+ var nacl_module = document.getElementById('nacl_module');
+ // The plugin will start the corresponding test and post a message back when
+ // the test is done. If the test has failed, the message is a description of
+ // the error; otherwise the message is empty.
+ nacl_module.postMessage(control_message);
+}
+
+var onControlMessageReceived = function(message) {
+ control_message = message;
+ chrome.test.runTests([testAll]);
+}
+
+var onPluginMessageReceived = function(message) {
+ if (message.data == "ready") {
+ chrome.test.sendMessage("info_please", onControlMessageReceived);
+ } else if (message.data) {
+ chrome.test.fail(message.data);
+ } else {
+ chrome.test.succeed();
+ }
+};
+
+window.onload = function() {
+ var nacl_module = document.getElementById('nacl_module');
+ nacl_module.addEventListener("message", onPluginMessageReceived, false);
+};
+
« no previous file with comments | « chrome/test/data/extensions/api_test/api_test_data.gyp ('k') | chrome/test/data/extensions/api_test/socket/ppapi/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698