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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/resources/java_engine_io.dart

Issue 12543009: Use JavaFile instead of Dart File. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months 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 | « no previous file | editor/util/plugins/com.google.dart.java2dart/resources/java_io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/util/plugins/com.google.dart.java2dart/resources/java_engine_io.dart
diff --git a/editor/util/plugins/com.google.dart.java2dart/resources/java_engine_io.dart b/editor/util/plugins/com.google.dart.java2dart/resources/java_engine_io.dart
index 844df0f05a41e92a0a5ffcb02cdd7db36e69aeb9..32923b692b9b8a6d1576478365b3036a0acfb337 100644
--- a/editor/util/plugins/com.google.dart.java2dart/resources/java_engine_io.dart
+++ b/editor/util/plugins/com.google.dart.java2dart/resources/java_engine_io.dart
@@ -1,6 +1,7 @@
library java.engine.io;
import "dart:io";
+import "java_io.dart";
class OSUtilities {
@@ -9,5 +10,5 @@ class OSUtilities {
}
class FileUtilities2 {
- static File createFile(String path) => new File(path);
+ static JavaFile createFile(String path) => new JavaFile(path);
}
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/resources/java_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698