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

Side by Side Diff: tools/dom/templates/html/dartium/indexed_db_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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:indexed_db library. 6 // Auto-generated dart:indexed_db library.
7 7
8 /** 8 /**
9 * A client-side key-value store with support for indexes. 9 * A client-side key-value store with support for indexes.
10 * 10 *
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 static KeyRange createKeyRange_upperBound( 100 static KeyRange createKeyRange_upperBound(
101 /*IDBKey*/ bound, [bool open = false]) => 101 /*IDBKey*/ bound, [bool open = false]) =>
102 KeyRange.upperBound_(bound, open); 102 KeyRange.upperBound_(bound, open);
103 103
104 static KeyRange createKeyRange_bound( 104 static KeyRange createKeyRange_bound(
105 /*IDBKey*/ lower, /*IDBKey*/ upper, 105 /*IDBKey*/ lower, /*IDBKey*/ upper,
106 [bool lowerOpen = false, bool upperOpen = false]) => 106 [bool lowerOpen = false, bool upperOpen = false]) =>
107 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); 107 KeyRange.bound_(lower, upper, lowerOpen, upperOpen);
108 } 108 }
109 // FIXME: Can we make this private? 109 // FIXME: Can we make this private?
110 @Deprecated("Internal Use Only")
110 final indexed_dbBlinkMap = { 111 final indexed_dbBlinkMap = {
111 $!TYPE_MAP 112 $!TYPE_MAP
112 }; 113 };
113 114
114 $if JSINTEROP 115 $if JSINTEROP
115 // FIXME: Can we make this private? 116 // FIXME: Can we make this private?
117 @Deprecated("Internal Use Only")
116 final indexed_dbBlinkFunctionMap = { 118 final indexed_dbBlinkFunctionMap = {
117 $!TYPE_FUNCTION_MAP 119 $!TYPE_FUNCTION_MAP
118 }; 120 };
119 $endif 121 $endif
OLDNEW
« no previous file with comments | « tools/dom/templates/html/dartium/html_dartium.darttemplate ('k') | tools/dom/templates/html/dartium/svg_dartium.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698