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

Side by Side Diff: tools/dom/templates/html/dartium/web_sql_dartium.darttemplate

Issue 1428593002: Deprecate new internal Dartium/JsInterop APIs that are public (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
OLDNEW
1 1
2 // DO NOT EDIT - unless you are editing documentation as per: 2 // DO NOT EDIT - unless you are editing documentation as per:
3 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 3 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
4 // Auto-generated dart:audio library. 4 // Auto-generated dart:audio library.
5 5
6 /** 6 /**
7 * An API for storing data in the browser that can be queried with SQL. 7 * An API for storing data in the browser that can be queried with SQL.
8 * 8 *
9 * **Caution:** this specification is no longer actively maintained by the Web 9 * **Caution:** this specification is no longer actively maintained by the Web
10 * Applications Working Group and may be removed at any time. 10 * Applications Working Group and may be removed at any time.
11 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /) 11 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /)
12 * for more information. 12 * for more information.
13 * 13 *
14 * The [dart:indexed_db] APIs is a recommended alternatives. 14 * The [dart:indexed_db] APIs is a recommended alternatives.
15 */ 15 */
16 library dart.dom.web_sql; 16 library dart.dom.web_sql;
17 17
18 import 'dart:async'; 18 import 'dart:async';
19 import 'dart:collection'; 19 import 'dart:collection';
20 import 'dart:_internal'; 20 import 'dart:_internal';
21 import 'dart:html'; 21 import 'dart:html';
22 import 'dart:html_common'; 22 import 'dart:html_common';
23 import 'dart:nativewrappers'; 23 import 'dart:nativewrappers';
24 import 'dart:_blink' as _blink; 24 import 'dart:_blink' as _blink;
25 import 'dart:js' as js; 25 import 'dart:js' as js;
26 26
27 $!GENERATED_DART_FILES 27 $!GENERATED_DART_FILES
28 // FIXME: Can we make this private? 28 // FIXME: Can we make this private?
29 @Deprecated("Internal Use Only")
29 final web_sqlBlinkMap = { 30 final web_sqlBlinkMap = {
30 $!TYPE_MAP 31 $!TYPE_MAP
31 }; 32 };
32 33
33 $if JSINTEROP 34 $if JSINTEROP
34 // FIXME: Can we make this private? 35 // FIXME: Can we make this private?
36 @Deprecated("Internal Use Only")
35 final web_sqlBlinkFunctionMap = { 37 final web_sqlBlinkFunctionMap = {
36 $!TYPE_FUNCTION_MAP 38 $!TYPE_FUNCTION_MAP
37 }; 39 };
38 $endif 40 $endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698