Index: lib/src/file_system/browser.dart |
diff --git a/lib/src/file_system/browser.dart b/lib/src/file_system/browser.dart |
index 0255300a9d9775f5022c7a061251844a9433f660..aa3e4ab400e259d422f553687ccfd51b7732d9d0 100644 |
--- a/lib/src/file_system/browser.dart |
+++ b/lib/src/file_system/browser.dart |
@@ -7,7 +7,7 @@ library browser; |
import 'dart:math'; |
import 'dart:html'; |
import 'path.dart'; |
-import 'package:web_components/src/file_system.dart'; |
+import 'package:web_components/src/file_system.dart' as fs; |
import 'package:js/js.dart' as js; |
/** |
@@ -15,7 +15,7 @@ import 'package:js/js.dart' as js; |
* proxy arbitrary urls. See extension/background.js for the code that does |
* the actual proxying. |
*/ |
-class BrowserFileSystem implements FileSystem { |
+class BrowserFileSystem implements fs.FileSystem { |
/** |
* Chrome extension port used to communicate back to the source page that |