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

Unified Diff: samples/simple_todo/java/SimpleTodo.java

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « samples/simple_todo/compile.sh ('k') | samples/simple_todo/java/SnapshotRunner.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/simple_todo/java/SimpleTodo.java
diff --git a/samples/simple_todo/java/SimpleTodo.java b/samples/simple_todo/java/SimpleTodo.java
index d345418cbf4b192fb3c0def7c1bfe76d08df9f7b..0eab6433e9d82622fecffd89666bd109c7649e02 100644
--- a/samples/simple_todo/java/SimpleTodo.java
+++ b/samples/simple_todo/java/SimpleTodo.java
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-import fletch.*;
+import dartino.*;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
@@ -17,13 +17,13 @@ class SimpleTodo {
System.exit(1);
}
- // Load libfletch.so.
- System.loadLibrary("fletch");
+ // Load libdartino.so.
+ System.loadLibrary("dartino");
- // Setup Fletch.
- FletchApi.Setup();
- FletchServiceApi.Setup();
- FletchApi.AddDefaultSharedLibrary("libfletch.so");
+ // Setup Dartino.
+ DartinoApi.Setup();
+ DartinoServiceApi.Setup();
+ DartinoApi.AddDefaultSharedLibrary("libdartino.so");
try {
// Load snapshot and start dart code on a separate thread.
« no previous file with comments | « samples/simple_todo/compile.sh ('k') | samples/simple_todo/java/SnapshotRunner.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698