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

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

Issue 1173403004: Changed to use JSInterop (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Re-gen'd somehow diffs stopped showing up in CL Created 5 years, 5 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
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 static KeyRange createKeyRange_bound( 103 static KeyRange createKeyRange_bound(
104 /*IDBKey*/ lower, /*IDBKey*/ upper, 104 /*IDBKey*/ lower, /*IDBKey*/ upper,
105 [bool lowerOpen = false, bool upperOpen = false]) => 105 [bool lowerOpen = false, bool upperOpen = false]) =>
106 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); 106 KeyRange.bound_(lower, upper, lowerOpen, upperOpen);
107 } 107 }
108 // FIXME: Can we make this private? 108 // FIXME: Can we make this private?
109 final indexed_dbBlinkMap = { 109 final indexed_dbBlinkMap = {
110 $!TYPE_MAP 110 $!TYPE_MAP
111 }; 111 };
112
113 $if JSINTEROP
114 // FIXME: Can we make this private?
115 final indexed_dbBlinkFunctionMap = {
116 $!TYPE_FUNCTION_MAP
117 };
118 $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