Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Unified Diff: tests/html/fileapi_test.dart

Issue 11419300: Dartifying dart:html type names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Unminifying & fixing Stephen's feedback. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/exceptions_test.dart ('k') | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/fileapi_test.dart
diff --git a/tests/html/fileapi_test.dart b/tests/html/fileapi_test.dart
index 031f1f19228d400357decf2d9352bd7a0d6a4af9..2b3b2a39cce49b61727297b0747ca1ad30fb3e85 100644
--- a/tests/html/fileapi_test.dart
+++ b/tests/html/fileapi_test.dart
@@ -9,13 +9,13 @@ void fail(message) {
});
}
-DOMFileSystem fs;
+FileSystem fs;
main() {
useHtmlConfiguration();
test('getFileSystem', () {
window.webkitRequestFileSystem(LocalWindow.TEMPORARY, 100, expectAsync1(
- (DOMFileSystem fileSystem) {
+ (FileSystem fileSystem) {
fs = fileSystem;
}),
(e) {
« no previous file with comments | « tests/html/exceptions_test.dart ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698