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

Side by Side Diff: tool/input_sdk/lib/web_sql/ddc/web_sql_ddc.dart

Issue 1616263005: Add CustomEvent (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rgen Created 4 years, 10 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
« no previous file with comments | « tool/input_sdk/lib/web_gl/ddc/web_gl_ddc.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /**
2 * An API for storing data in the browser that can be queried with SQL.
3 *
4 * **Caution:** this specification is no longer actively maintained by the Web
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 /)
7 * for more information.
8 *
9 * The [dart:indexed_db] APIs is a recommended alternatives.
10 */
11 library dart.dom.web_sql;
12
13 import 'dart:async';
14 import 'dart:collection';
15 import 'dart:_internal';
16 import 'dart:html';
17 import 'dart:html_common';
18 import 'dart:_js_helper' show convertDartClosureToJS, Creates, JSName, Native;
19 import 'dart:_foreign_helper' show JS;
20 import 'dart:_interceptors' show Interceptor;
21 // DO NOT EDIT - unless you are editing documentation as per:
22 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
23 // Auto-generated dart:audio library.
24
25
26
27
28 // FIXME: Can we make this private?
29 final web_sqlBlinkMap = {
30
31 };
32
33 // FIXME: Can we make this private?
34 final web_sqlBlinkFunctionMap = {
35
36 };
OLDNEW
« no previous file with comments | « tool/input_sdk/lib/web_gl/ddc/web_gl_ddc.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698