workers/Overview.html 1.47 54 Rename createNamedWorker to createSharedW

Rename createNamedWorker to createSharedWorker. (whatwg r54)

createWorker(scriptURL)
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#createworker
name
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#name
Worker
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#worker1
createSharedWorker(name, scriptURL)
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#createsharedworker
closing
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#closing
WorkerFactory
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#workerfactory
2.6 Creating workers
http://people.w3.org/mike/diffs/html5/workers/Overview.1.47.html#creating

http://people.w3.org/mike/diffs/html5/workers/Overview.diff.html
http://dev.w3.org/cvsweb/html5/workers/Overview.html?r1=1.46&r2=1.47&f=h
http://html5.org/tools/web-apps-tracker?from=53&to=54

===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- Overview.html 8 Aug 2008 05:50:06 -0000 1.46
+++ Overview.html 8 Aug 2008 05:58:18 -0000 1.47
@@ -1004,8 +1004,8 @@
    by the "<a href="#run-a">run a worker</a>" algorithm. If it has a value
    that isn't the empty string, its value represents the name that can be
    used to obtain a reference to the worker using the <code
-   title=dom-WorkerFactory-createNamedWorker><a
-   href="#createnamedworker">createNamedWorker()</a></code> method.
+   title=dom-WorkerFactory-createSharedWorker><a
+   href="#createsharedworker">createSharedWorker()</a></code> method.
 
   <p>The <dfn id=closing
    title=dom-WorkerGlobalScope-closing><code>closing</code></dfn> attribute
@@ -1409,7 +1409,7 @@
   <pre
    class=idl>[NoInterfaceObject] interface <dfn id=workerfactory>WorkerFactory</dfn> {
   <a href="#worker1">Worker</a> <a href="#createworker" title=dom-WorkerFactory-createWorker>createWorker</a>(in DOMString scriptURL);
-  <a href="#worker1">Worker</a> <a href="#createnamedworker" title=dom-WorkerFactory-createNamedWorker>createNamedWorker</a>(in DOMString name, in DOMString scriptURL);
+  <a href="#worker1">Worker</a> <a href="#createsharedworker" title=dom-WorkerFactory-createSharedWorker>createSharedWorker</a>(in DOMString name, in DOMString scriptURL);
 };
 
 interface <dfn id=worker1>Worker</dfn> {
@@ -1458,8 +1458,8 @@
 
   <hr>
 
-  <p>When the <dfn id=createnamedworker
-   title=dom-WorkerFactory-createNamedWorker><code>createNamedWorker(<var
+  <p>When the <dfn id=createsharedworker
+   title=dom-WorkerFactory-createSharedWorker><code>createSharedWorker(<var
    title="">name</var>, <var title="">scriptURL</var>)</code></dfn> method is
    invoked, the user agent must run the following steps:

Received on Friday, 8 August 2008 06:00:00 UTC