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

Side by Side Diff: sdk/lib/web_sql/dart2js/web_sql_dart2js.dart

Issue 1440183003: Update 145 DOM doc links to use proper Markdown; fix 56 broken links (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/docs/docs.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * An API for storing data in the browser that can be queried with SQL. 2 * An API for storing data in the browser that can be queried with SQL.
3 * 3 *
4 * **Caution:** this specification is no longer actively maintained by the Web 4 * **Caution:** this specification is no longer actively maintained by the Web
5 * Applications Working Group and may be removed at any time. 5 * Applications Working Group and may be removed at any time.
6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /) 6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /)
7 * for more information. 7 * for more information.
8 * 8 *
9 * The [dart:indexed_db] APIs is a recommended alternatives. 9 * The [dart:indexed_db] APIs is a recommended alternatives.
10 */ 10 */
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 /** 96 /**
97 * Atomically update the database version to [newVersion], asynchronously 97 * Atomically update the database version to [newVersion], asynchronously
98 * running [callback] on the [SqlTransaction] representing this 98 * running [callback] on the [SqlTransaction] representing this
99 * [changeVersion] transaction. 99 * [changeVersion] transaction.
100 * 100 *
101 * If [callback] runs successfully, then [successCallback] is called. 101 * If [callback] runs successfully, then [successCallback] is called.
102 * Otherwise, [errorCallback] is called. 102 * Otherwise, [errorCallback] is called.
103 * 103 *
104 * [oldVersion] should match the database's current [version] exactly. 104 * [oldVersion] should match the database's current [version] exactly.
105 * 105 *
106 * See also:
107 *
106 * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom-database-c hangeversion) from W3C. 108 * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom-database-c hangeversion) from W3C.
107 */ 109 */
108 @DomName('Database.changeVersion') 110 @DomName('Database.changeVersion')
109 @DocsEditable() 111 @DocsEditable()
110 void changeVersion(String oldVersion, String newVersion, [SqlTransactionCallba ck callback, SqlTransactionErrorCallback errorCallback, VoidCallback successCall back]) native; 112 void changeVersion(String oldVersion, String newVersion, [SqlTransactionCallba ck callback, SqlTransactionErrorCallback errorCallback, VoidCallback successCall back]) native;
111 113
112 @DomName('Database.readTransaction') 114 @DomName('Database.readTransaction')
113 @DocsEditable() 115 @DocsEditable()
114 void readTransaction(SqlTransactionCallback callback, [SqlTransactionErrorCall back errorCallback, VoidCallback successCallback]) native; 116 void readTransaction(SqlTransactionCallback callback, [SqlTransactionErrorCall back errorCallback, VoidCallback successCallback]) native;
115 117
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 @deprecated // deprecated 287 @deprecated // deprecated
286 @Native("SQLTransaction") 288 @Native("SQLTransaction")
287 class SqlTransaction extends Interceptor { 289 class SqlTransaction extends Interceptor {
288 // To suppress missing implicit constructor warnings. 290 // To suppress missing implicit constructor warnings.
289 factory SqlTransaction._() { throw new UnsupportedError("Not supported"); } 291 factory SqlTransaction._() { throw new UnsupportedError("Not supported"); }
290 292
291 @DomName('SQLTransaction.executeSql') 293 @DomName('SQLTransaction.executeSql')
292 @DocsEditable() 294 @DocsEditable()
293 void executeSql(String sqlStatement, List<Object> arguments, [SqlStatementCall back callback, SqlStatementErrorCallback errorCallback]) native; 295 void executeSql(String sqlStatement, List<Object> arguments, [SqlStatementCall back callback, SqlStatementErrorCallback errorCallback]) native;
294 } 296 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/docs/docs.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698