go.mobile: use golang.org/x/... import paths

LGTM=bradfitz, rsc
R=rsc, bradfitz
CC=golang-codereviews
https://golang.org/cl/162710043
This commit is contained in:
Andrew Gerrand
2014-11-10 08:55:57 +11:00
parent 385a1a25f7
commit 9470e0ba58
29 changed files with 58 additions and 58 deletions
+2 -2
View File
@@ -7,9 +7,9 @@
package main
import (
"code.google.com/p/go.mobile/app"
"golang.org/x/mobile/app"
_ "code.google.com/p/go.mobile/bind/java/testpkg/go_testpkg"
_ "golang.org/x/mobile/bind/java/testpkg/go_testpkg"
)
func main() {
+2 -2
View File
@@ -15,8 +15,8 @@ import (
"sync"
"unsafe"
"code.google.com/p/go.mobile/app"
"code.google.com/p/go.mobile/bind/seq"
"golang.org/x/mobile/app"
"golang.org/x/mobile/bind/seq"
)
const maxSliceLen = 1<<31 - 1
+2 -2
View File
@@ -5,8 +5,8 @@
package go_testpkg
import (
"code.google.com/p/go.mobile/bind/java/testpkg"
"code.google.com/p/go.mobile/bind/seq"
"golang.org/x/mobile/bind/java/testpkg"
"golang.org/x/mobile/bind/seq"
)
func proxy_Add(out, in *seq.Buffer) {