Update golang spdy to new path.

Upstream golang spdy was moved to x/net/spdy and then deleted.  This vendors in
the last revision and updates the only user of it.
This commit is contained in:
Tim Hockin
2015-04-27 14:07:10 -07:00
parent 83093af8b0
commit e4435c7417
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 (