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

Side by Side Diff: chrome/browser/debugger/manual_tests/resources/worker-primes.js

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 importScripts('primes.js');
2
3 var primes = new Primes();
4
5 onmessage = function(event) {
6 var p = event.data;
7 if (p != parseInt(p))
8 throw 'invalid argument';
9 postMessage([p, primes.test(p)]);
10 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698