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

LGTM=bradfitz, rsc
R=rsc, bradfitz
CC=golang-codereviews
https://golang.org/cl/169090043
This commit is contained in:
Andrew Gerrand 2014-11-10 08:52:14 +11:00
parent c087821dc6
commit 2e99ef522d
5 changed files with 9 additions and 9 deletions

View File

@ -16,8 +16,8 @@ import (
"sort"
"strings"
"code.google.com/p/go.image/webp"
"code.google.com/p/go.image/webp/nycbcra"
"golang.org/x/image/webp"
"golang.org/x/image/webp/nycbcra"
)
var (

View File

@ -11,7 +11,7 @@ import (
"log"
"strings"
"code.google.com/p/go.image/riff"
"golang.org/x/image/riff"
)
func ExampleReader() {

View File

@ -16,7 +16,7 @@ import (
"io"
"io/ioutil"
"code.google.com/p/go.image/tiff/lzw"
"golang.org/x/image/tiff/lzw"
)
// A FormatError reports that the input is not a valid TIFF image.

View File

@ -15,10 +15,10 @@ import (
"image/color"
"io"
"code.google.com/p/go.image/riff"
"code.google.com/p/go.image/vp8"
"code.google.com/p/go.image/vp8l"
"code.google.com/p/go.image/webp/nycbcra"
"golang.org/x/image/riff"
"golang.org/x/image/vp8"
"golang.org/x/image/vp8l"
"golang.org/x/image/webp/nycbcra"
)
var errInvalidFormat = errors.New("webp: invalid format")

View File

@ -14,7 +14,7 @@ import (
"strings"
"testing"
"code.google.com/p/go.image/webp/nycbcra"
"golang.org/x/image/webp/nycbcra"
)
// hex is like fmt.Sprintf("% x", x) but also inserts dots every 16 bytes, to