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

Side by Side Diff: service/urlfetch/context.go

Issue 2021753002: Change gae to apache 2 license. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 // Package urlfetch provides a way for an application to get http.RoundTripper 5 // Package urlfetch provides a way for an application to get http.RoundTripper
6 // that can make outbound HTTP requests. If used for https:// protocol, will 6 // that can make outbound HTTP requests. If used for https:// protocol, will
7 // always validate SSL certificates. 7 // always validate SSL certificates.
8 package urlfetch 8 package urlfetch
9 9
10 import ( 10 import (
11 "errors" 11 "errors"
12 "net/http" 12 "net/http"
13 13
(...skipping 23 matching lines...) Expand all
37 func SetFactory(c context.Context, f Factory) context.Context { 37 func SetFactory(c context.Context, f Factory) context.Context {
38 return context.WithValue(c, serviceKey, f) 38 return context.WithValue(c, serviceKey, f)
39 } 39 }
40 40
41 // Set sets the current http.RoundTripper object in the context. Useful for 41 // Set sets the current http.RoundTripper object in the context. Useful for
42 // testing with a quick mock. This is just a shorthand SetFactory invocation 42 // testing with a quick mock. This is just a shorthand SetFactory invocation
43 // to set a factory which always returns the same object. 43 // to set a factory which always returns the same object.
44 func Set(c context.Context, r http.RoundTripper) context.Context { 44 func Set(c context.Context, r http.RoundTripper) context.Context {
45 return SetFactory(c, func(context.Context) http.RoundTripper { return r }) 45 return SetFactory(c, func(context.Context) http.RoundTripper { return r })
46 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698