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

Unified Diff: third_party/go/src/golang.org/x/mobile/example/libhello/src/go/hi/Hi.java

Issue 1275153002: Remove third_party/golang.org/x/mobile as it is no longer used with Go 1.5. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Remove golang.org/x/mobile Created 5 years, 4 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
Index: third_party/go/src/golang.org/x/mobile/example/libhello/src/go/hi/Hi.java
diff --git a/third_party/go/src/golang.org/x/mobile/example/libhello/src/go/hi/Hi.java b/third_party/go/src/golang.org/x/mobile/example/libhello/src/go/hi/Hi.java
deleted file mode 100644
index 6514f5a975326eb861f00c6e544cbd15a33ee13c..0000000000000000000000000000000000000000
--- a/third_party/go/src/golang.org/x/mobile/example/libhello/src/go/hi/Hi.java
+++ /dev/null
@@ -1,20 +0,0 @@
-// Java Package hi is a proxy for talking to a Go program.
-//
-// File is generated by gobind. Do not edit.
-package go.hi;
-
-import go.Seq;
-
-public abstract class Hi {
- private Hi() {} // uninstantiable
-
- public static void Hello(String name) {
- go.Seq _in = new go.Seq();
- go.Seq _out = new go.Seq();
- _in.writeUTF16(name);
- Seq.send(DESCRIPTOR, CALL_Hello, _in, _out);
- }
-
- private static final int CALL_Hello = 1;
- private static final String DESCRIPTOR = "hi";
-}

Powered by Google App Engine
This is Rietveld 408576698