OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 #import "ImagePresenter.h" | 5 #import "ImagePresenter.h" |
6 | 6 |
7 @interface ImagePresenter () | 7 @interface ImagePresenter () |
8 @property id<ImageCache> imageCache; | 8 @property id<ImageCache> imageCache; |
9 @end | 9 @end |
10 | 10 |
11 @implementation ImagePresenter | 11 @implementation ImagePresenter |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 BOOL* stop) { | 73 BOOL* stop) { |
74 [imagePresenter presentImageFromData:imageData]; | 74 [imagePresenter presentImageFromData:imageData]; |
75 }]; | 75 }]; |
76 }); | 76 }); |
77 }); | 77 }); |
78 } | 78 } |
79 } | 79 } |
80 } | 80 } |
81 | 81 |
82 @end | 82 @end |
OLD | NEW |