OLD | NEW |
1 /** | 1 /** |
2 * This library provides entry points to the native Blink code which backs | 2 * This library provides entry points to the native Blink code which backs |
3 * up the dart:html library. | 3 * up the dart:html library. |
4 */ | 4 */ |
5 library dart.dom._blink; | 5 library dart.dom._blink; |
6 | 6 |
7 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 7 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
8 // for details. All rights reserved. Use of this source code is governed by a | 8 // for details. All rights reserved. Use of this source code is governed by a |
9 // BSD-style license that can be found in the LICENSE file. | 9 // BSD-style license that can be found in the LICENSE file. |
10 | 10 |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
566 | 566 |
567 class BlinkCSSStyleDeclaration { | 567 class BlinkCSSStyleDeclaration { |
568 static $cssText_Getter(mthis) native "CSSStyleDeclaration_cssText_Getter"; | 568 static $cssText_Getter(mthis) native "CSSStyleDeclaration_cssText_Getter"; |
569 | 569 |
570 static $cssText_Setter(mthis, value) native "CSSStyleDeclaration_cssText_Sette
r"; | 570 static $cssText_Setter(mthis, value) native "CSSStyleDeclaration_cssText_Sette
r"; |
571 | 571 |
572 static $length_Getter(mthis) native "CSSStyleDeclaration_length_Getter"; | 572 static $length_Getter(mthis) native "CSSStyleDeclaration_length_Getter"; |
573 | 573 |
574 static $parentRule_Getter(mthis) native "CSSStyleDeclaration_parentRule_Getter
"; | 574 static $parentRule_Getter(mthis) native "CSSStyleDeclaration_parentRule_Getter
"; |
575 | 575 |
576 static $__propertyQuery___Callback(mthis, name) native "CSSStyleDeclaration___
propertyQuery___Callback_RESOLVER_STRING_1_DOMString"; | |
577 | |
578 static $__setter___Callback(mthis, propertyName, propertyValue) native "CSSSty
leDeclaration___setter___Callback"; | 576 static $__setter___Callback(mthis, propertyName, propertyValue) native "CSSSty
leDeclaration___setter___Callback"; |
579 | 577 |
580 static $getPropertyPriority_Callback(mthis, propertyName) native "CSSStyleDecl
aration_getPropertyPriority_Callback_RESOLVER_STRING_1_DOMString"; | 578 static $getPropertyPriority_Callback(mthis, propertyName) native "CSSStyleDecl
aration_getPropertyPriority_Callback_RESOLVER_STRING_1_DOMString"; |
581 | 579 |
582 static $getPropertyValue_Callback(mthis, propertyName) native "CSSStyleDeclara
tion_getPropertyValue_Callback_RESOLVER_STRING_1_DOMString"; | 580 static $getPropertyValue_Callback(mthis, propertyName) native "CSSStyleDeclara
tion_getPropertyValue_Callback_RESOLVER_STRING_1_DOMString"; |
583 | 581 |
584 static $item_Callback(mthis, index) native "CSSStyleDeclaration_item_Callback_
RESOLVER_STRING_1_unsigned long"; | 582 static $item_Callback(mthis, index) native "CSSStyleDeclaration_item_Callback_
RESOLVER_STRING_1_unsigned long"; |
585 | 583 |
586 static $removeProperty_Callback(mthis, propertyName) native "CSSStyleDeclarati
on_removeProperty_Callback_RESOLVER_STRING_1_DOMString"; | 584 static $removeProperty_Callback(mthis, propertyName) native "CSSStyleDeclarati
on_removeProperty_Callback_RESOLVER_STRING_1_DOMString"; |
587 | 585 |
(...skipping 7788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8376 // _DOMStringMap native entry points | 8374 // _DOMStringMap native entry points |
8377 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba
ck"; | 8375 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba
ck"; |
8378 | 8376 |
8379 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; | 8377 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; |
8380 | 8378 |
8381 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac
k"; | 8379 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac
k"; |
8382 | 8380 |
8383 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; | 8381 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; |
8384 | 8382 |
8385 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; | 8383 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; |
8386 } | 8384 } |
OLD | NEW |