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 7975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7986 static parentNode_Callback(mthis) native "TreeWalker_parentNode_Callback"; | 7986 static parentNode_Callback(mthis) native "TreeWalker_parentNode_Callback"; |
7987 | 7987 |
7988 static previousNode_Callback(mthis) native "TreeWalker_previousNode_Callback"; | 7988 static previousNode_Callback(mthis) native "TreeWalker_previousNode_Callback"; |
7989 | 7989 |
7990 static previousSibling_Callback(mthis) native "TreeWalker_previousSibling_Call
back"; | 7990 static previousSibling_Callback(mthis) native "TreeWalker_previousSibling_Call
back"; |
7991 } | 7991 } |
7992 | 7992 |
7993 class BlinkURL { | 7993 class BlinkURL { |
7994 static createObjectURL_Callback_Blob(blob_OR_source_OR_stream) native "URL_cre
ateObjectURL_Callback_Blob"; | 7994 static createObjectURL_Callback_Blob(blob_OR_source_OR_stream) native "URL_cre
ateObjectURL_Callback_Blob"; |
7995 | 7995 |
| 7996 static createObjectURL_Callback_MediaSource(blob_OR_source_OR_stream) native "
URL_createObjectURL_Callback_MediaSource"; |
| 7997 |
7996 static createObjectURL_Callback_MediaStream(blob_OR_source_OR_stream) native "
URL_createObjectURL_Callback_MediaStream"; | 7998 static createObjectURL_Callback_MediaStream(blob_OR_source_OR_stream) native "
URL_createObjectURL_Callback_MediaStream"; |
7997 | 7999 |
7998 static createObjectURL_Callback_MediaSource(blob_OR_source_OR_stream) native "
URL_createObjectURL_Callback_MediaSource"; | |
7999 | |
8000 static revokeObjectURL_Callback_DOMString(url) native "URL_revokeObjectURL_Cal
lback_DOMString"; | 8000 static revokeObjectURL_Callback_DOMString(url) native "URL_revokeObjectURL_Cal
lback_DOMString"; |
8001 | 8001 |
8002 static hash_Getter(mthis) native "URL_hash_Getter"; | 8002 static hash_Getter(mthis) native "URL_hash_Getter"; |
8003 | 8003 |
8004 static hash_Setter_DOMString(mthis, value) native "URL_hash_Setter"; | 8004 static hash_Setter_DOMString(mthis, value) native "URL_hash_Setter"; |
8005 | 8005 |
8006 static host_Getter(mthis) native "URL_host_Getter"; | 8006 static host_Getter(mthis) native "URL_host_Getter"; |
8007 | 8007 |
8008 static host_Setter_DOMString(mthis, value) native "URL_host_Setter"; | 8008 static host_Setter_DOMString(mthis, value) native "URL_host_Setter"; |
8009 | 8009 |
(...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9369 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba
ck"; | 9369 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba
ck"; |
9370 | 9370 |
9371 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; | 9371 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; |
9372 | 9372 |
9373 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac
k"; | 9373 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac
k"; |
9374 | 9374 |
9375 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; | 9375 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; |
9376 | 9376 |
9377 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; | 9377 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; |
9378 } | 9378 } |
OLD | NEW |