Skip to content

Commit

Permalink
[e] (0) kill SQLVersionChangeCallback
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@1103 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 26, 2007
1 parent 620b249 commit f3dd1b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
8 changes: 1 addition & 7 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -30497,7 +30497,7 @@ have a variable and unknownable number of literals coming:

<pre class=idl>interface <dfn id=database0>Database</dfn> {
readonly attribute DOMString <a href="#version" title=dom-database-version>version</a>;
void <a href="#changeversion" title=dom-database-changeVersion>changeVersion</a>(in DOMString oldVersion, in DOMString newVersion, in <a href="#sqlversionchangecallback">SQLVersionChangeCallback</a> callback, in <a href="#sqltransactionerrorcallback">SQLTransactionErrorCallback</a> errorCallback);
void <a href="#changeversion" title=dom-database-changeVersion>changeVersion</a>(in DOMString oldVersion, in DOMString newVersion, in <a href="#sqltransactioncallback">SQLTransactionCallback</a> callback, in <a href="#sqltransactionerrorcallback">SQLTransactionErrorCallback</a> errorCallback);
void <a href="#transaction" title=dom-database-transaction>transaction</a>(in <a href="#sqltransactioncallback">SQLTransactionCallback</a> callback);
void <a href="#transaction" title=dom-database-transaction>transaction</a>(in <a href="#sqltransactioncallback">SQLTransactionCallback</a> callback, in <a href="#sqltransactionerrorcallback">SQLTransactionErrorCallback</a> errorCallback);
};
Expand All @@ -30506,10 +30506,6 @@ interface <dfn id=sqltransactioncallback>SQLTransactionCallback</dfn> {
void <span title=dom-sqltransactioncallback-handleEvent>handleEvent</span>(in <a href="#sqltransaction">SQLTransaction</a> transaction);
};

interface <dfn id=sqlversionchangecallback>SQLVersionChangeCallback</dfn> {
void <span title=dom-sqlversionchangecallback-handleEvent>handleEvent</span>(in <a href="#sqltransaction">SQLTransaction</a> transaction);
};

interface <dfn id=sqltransactionerrorcallback>SQLTransactionErrorCallback</dfn> {
boolean <span title=dom-sqltransactionerrorcallback-handleEvent>handleEvent</span>(in <a href="#sqlerror">SQLError</a> error);
};</pre>
Expand Down Expand Up @@ -30603,8 +30599,6 @@ interface <dfn id=sqlstatementerrorcallback>SQLStatementErrorCallback</dfn> {
<li>
<p>If the method was not invoked during the execution of a <code><a
href="#sqltransactioncallback">SQLTransactionCallback</a></code>,
<code><a
href="#sqlversionchangecallback">SQLVersionChangeCallback</a></code>,
<code><a href="#sqlstatementcallback">SQLStatementCallback</a></code>,
or <code><a
href="#sqlstatementerrorcallback">SQLStatementErrorCallback</a></code>
Expand Down
7 changes: 1 addition & 6 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -28071,7 +28071,7 @@ have a variable and unknownable number of literals coming:

<pre class="idl">interface <dfn>Database</dfn> {
readonly attribute DOMString <span title="dom-database-version">version</span>;
void <span title="dom-database-changeVersion">changeVersion</span>(in DOMString oldVersion, in DOMString newVersion, in <span>SQLVersionChangeCallback</span> callback, in <span>SQLTransactionErrorCallback</span> errorCallback);
void <span title="dom-database-changeVersion">changeVersion</span>(in DOMString oldVersion, in DOMString newVersion, in <span>SQLTransactionCallback</span> callback, in <span>SQLTransactionErrorCallback</span> errorCallback);
void <span title="dom-database-transaction">transaction</span>(in <span>SQLTransactionCallback</span> callback);
void <span title="dom-database-transaction">transaction</span>(in <span>SQLTransactionCallback</span> callback, in <span>SQLTransactionErrorCallback</span> errorCallback);
};
Expand All @@ -28080,10 +28080,6 @@ interface <dfn>SQLTransactionCallback</dfn> {
void <span title="dom-sqltransactioncallback-handleEvent">handleEvent</span>(in <span>SQLTransaction</span> transaction);
};

interface <dfn>SQLVersionChangeCallback</dfn> {
void <span title="dom-sqlversionchangecallback-handleEvent">handleEvent</span>(in <span>SQLTransaction</span> transaction);
};

interface <dfn>SQLTransactionErrorCallback</dfn> {
boolean <span title="dom-sqltransactionerrorcallback-handleEvent">handleEvent</span>(in <span>SQLError</span> error);
};</pre>
Expand Down Expand Up @@ -28182,7 +28178,6 @@ interface <dfn>SQLStatementErrorCallback</dfn> {

<li><p>If the method was not invoked during the execution of a
<code>SQLTransactionCallback</code>,
<code>SQLVersionChangeCallback</code>,
<code>SQLStatementCallback</code>, or
<code>SQLStatementErrorCallback</code> then raise an
<code>INVALID_STATE_ERR</code> exception. (Calls from inside a
Expand Down

0 comments on commit f3dd1b1

Please sign in to comment.