feat(WebWorker) Add channel support to MessageBus

closes #3661 and #3686
This commit is contained in:
Jason Teplitz
2015-08-17 10:28:47 -07:00
parent 104302a958
commit 0b59e664ec
36 changed files with 1155 additions and 753 deletions

View File

@ -5,19 +5,19 @@ import 'dart:typed_data';
// TODO(jteplitz602) Implement this class #3493
class BitmapService {
ImageData applySepia (ImageData imageData) {
ImageData applySepia(ImageData imageData) {
return null;
}
String arrayBufferToDataUri (Uint8ClampedList data) {
String arrayBufferToDataUri(Uint8ClampedList data) {
return null;
}
ImageData convertToImageData (ByteBuffer buffer) {
ImageData convertToImageData(ByteBuffer buffer) {
return null;
}
String toDataUri (ImageData imageData) {
String toDataUri(ImageData imageData) {
return null;
}
}