OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |