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

Unified Diff: net/data/websocket/websocket_worker_simple.js

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/data/websocket/websocket_shared_worker.html ('k') | net/disk_cache/backend_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/data/websocket/websocket_worker_simple.js
diff --git a/net/data/websocket/websocket_worker_simple.js b/net/data/websocket/websocket_worker_simple.js
deleted file mode 100644
index 37e3be8b80d59db2bd9e80db88437c5cc72e1849..0000000000000000000000000000000000000000
--- a/net/data/websocket/websocket_worker_simple.js
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2012 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.
-
-if (!self.postMessage) {
- // This is a shared worker - mimic dedicated worker APIs
- onconnect = function(event) {
- event.ports[0].onmessage = function(e) {
- self.postMessage = function (msg) {
- event.ports[0].postMessage(msg);
- };
- runTests(e.data);
- };
- };
-} else {
- runTests(event.data);
-}
-
-// This test is compatible with shared-worker-simple.html layout test.
-runTests = function (url) {
- var ws;
- var greeting = "hello";
- try {
- ws = new WebSocket(url);
- ws.onopen = function() {
- ws.send(greeting);
- };
- ws.onmessage = function(e) {
- // Receive echoed "hello".
- if (e.data != greeting) {
- postMessage("FAIL: received data is wrong: " + e.data);
- } else {
- ws.close();
- }
- };
- ws.onclose = function(e) {
- if (!e.wasClean) {
- postMessage("FAIL: close is not clean");
- } else {
- postMessage("DONE");
- }
- };
- } catch (e) {
- postMessage("FAIL: worker: Unexpected exception: " + e);
- }
-};
« no previous file with comments | « net/data/websocket/websocket_shared_worker.html ('k') | net/disk_cache/backend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698