Chromium Code Reviews

Unified Diff: samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartRunner.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.
Jump to:
View side-by-side diff with in-line comments
Index: samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartRunner.java
diff --git a/samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/DartRunner.java b/samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartRunner.java
similarity index 78%
rename from samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/DartRunner.java
rename to samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartRunner.java
index 6ee6296a46985b51f4514f3404af8491636de304..0608d9381f306329f65e042c37b0600e3eb617be 100644
--- a/samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/DartRunner.java
+++ b/samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartRunner.java
@@ -2,9 +2,9 @@
// 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.
-package com.google.fletch.todomvc;
+package com.google.dartino.githubsample;
-import fletch.FletchApi;
+import dartino.DartinoApi;
public class DartRunner implements Runnable {
DartRunner(byte[] snapshot) {
@@ -13,7 +13,7 @@ public class DartRunner implements Runnable {
@Override
public void run() {
- FletchApi.RunSnapshot(snapshot);
+ DartinoApi.RunSnapshot(snapshot);
}
byte[] snapshot;

Powered by Google App Engine