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

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: Revert accidental removal 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 library dart.dom.indexed_db; 8 library dart.dom.indexed_db;
9 9
10 import 'dart:async'; 10 import 'dart:async';
(...skipping 19 matching lines...) Expand all
30 30
31 static KeyRange createKeyRange_bound( 31 static KeyRange createKeyRange_bound(
32 /*IDBKey*/ lower, /*IDBKey*/ upper, 32 /*IDBKey*/ lower, /*IDBKey*/ upper,
33 [bool lowerOpen = false, bool upperOpen = false]) => 33 [bool lowerOpen = false, bool upperOpen = false]) =>
34 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); 34 KeyRange.bound_(lower, upper, lowerOpen, upperOpen);
35 } 35 }
36 // FIXME: Can we make this private? 36 // FIXME: Can we make this private?
37 final indexed_dbBlinkMap = { 37 final indexed_dbBlinkMap = {
38 $!TYPE_MAP 38 $!TYPE_MAP
39 }; 39 };
40
41 $if JSINTEROP
42 // FIXME: Can we make this private?
43 final indexed_dbBlinkFunctionMap = {
44 $!TYPE_FUNCTION_MAP
45 };
46 $endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698