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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 1763063003: Fixed typedef used globally in IDLs (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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:
Download patch
« no previous file with comments | « sdk/lib/_blink/dartium/_blink_dartium.dart ('k') | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index f83ed5e0879de849c6df35d5ef3a341b5b2630da..9ebcdf455de8b784b6e08991478a69d50052d1be 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -1321,6 +1321,11 @@ class BluetoothGattCharacteristic extends Interceptor {
// To suppress missing implicit constructor warnings.
factory BluetoothGattCharacteristic._() { throw new UnsupportedError("Not supported"); }
+ @DomName('BluetoothGATTCharacteristic.uuid')
+ @DocsEditable()
+ @Experimental() // untriaged
+ final String uuid;
+
@DomName('BluetoothGATTCharacteristic.readValue')
@DocsEditable()
@Experimental() // untriaged
@@ -1394,6 +1399,27 @@ class BluetoothGattService extends Interceptor {
class BluetoothUuid extends Interceptor {
// To suppress missing implicit constructor warnings.
factory BluetoothUuid._() { throw new UnsupportedError("Not supported"); }
+
+ @JSName('canonicalUUID')
+ @DomName('BluetoothUUID.canonicalUUID')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static String canonicalUuid(int alias) native;
+
+ @DomName('BluetoothUUID.getCharacteristic')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static String getCharacteristic(Object name) native;
+
+ @DomName('BluetoothUUID.getDescriptor')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static String getDescriptor(Object name) native;
+
+ @DomName('BluetoothUUID.getService')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static String getService(Object name) native;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
« no previous file with comments | « sdk/lib/_blink/dartium/_blink_dartium.dart ('k') | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698