4605b5ea33
- Split some of the streams into an interface and an implementation file. - Add documentation comments where missing. R=sgjesse@google.com BUG= TEST= Review URL: https://chromiumcodereview.appspot.com//9289042 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3616 260f80e4-7a28-3924-810f-c04153c831b5
28 lines
794 B
Dart
28 lines
794 B
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
class _EventHandler extends NativeFieldWrapperClass1 {
|
|
_EventHandler() { }
|
|
|
|
static void _start() {
|
|
if (_eventHandler === null) {
|
|
_eventHandler = new _EventHandler();
|
|
_eventHandler._doStart();
|
|
}
|
|
}
|
|
|
|
void _doStart() native "EventHandler_Start";
|
|
|
|
static _sendData(int id, ReceivePort receivePort, int data) {
|
|
if (_eventHandler !== null) {
|
|
_eventHandler._doSendData(id, receivePort, data);
|
|
}
|
|
}
|
|
|
|
void _doSendData(int id, ReceivePort receivePort, int data)
|
|
native "EventHandler_SendData";
|
|
|
|
static _EventHandler _eventHandler;
|
|
}
|