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

Unified Diff: chrome/test/data/workers/incognito_worker.js

Issue 441022: Changed shared worker code so incognito windows do not have access to non-incognito shared workers. (Closed)
Patch Set: Removed superfluous valgrind change. Created 11 years, 1 month 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/workers/incognito_worker.js
diff --git a/chrome/test/data/workers/incognito_worker.js b/chrome/test/data/workers/incognito_worker.js
new file mode 100644
index 0000000000000000000000000000000000000000..cb5b7bcca00e578238af47a9c705a66848e81a7c
--- /dev/null
+++ b/chrome/test/data/workers/incognito_worker.js
@@ -0,0 +1,5 @@
+var count = 0;
+
+onconnect = function(event) {
+ event.ports[0].postMessage(++count);
+};

Powered by Google App Engine
This is Rietveld 408576698