Merge pull request #7392 from thockin/golang-spdy-dep

Update golang spdy to new path.
This commit is contained in:
Daniel Smith
2015-04-27 18:01:12 -07:00
10 changed files with 13 additions and 11 deletions

View File

@@ -9,7 +9,7 @@ import (
"sync"
"time"
"code.google.com/p/go.net/spdy"
"golang.org/x/net/spdy"
)
var (

View File

@@ -1,9 +1,10 @@
package spdystream
import (
"code.google.com/p/go.net/spdy"
"container/heap"
"sync"
"golang.org/x/net/spdy"
)
type prioritizedFrame struct {

View File

@@ -1,10 +1,11 @@
package spdystream
import (
"code.google.com/p/go.net/spdy"
"sync"
"testing"
"time"
"golang.org/x/net/spdy"
)
func TestPriorityQueueOrdering(t *testing.T) {

View File

@@ -9,7 +9,7 @@ import (
"sync"
"time"
"code.google.com/p/go.net/spdy"
"golang.org/x/net/spdy"
)
var (

View File

@@ -4,7 +4,7 @@
// Package spdy implements the SPDY protocol (currently SPDY/3), described in
// http://www.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3.
package spdy
package spdy // import "golang.org/x/net/spdy"
import (
"bytes"