Chromium Code Reviews| Index: net/http/http_stream_factory_impl.h |
| diff --git a/net/http/http_stream_factory_impl.h b/net/http/http_stream_factory_impl.h |
| index 063d60385c134eb9426c38fa463b8089f3c3469b..d747bef9c0c068c52bff3f9e3bb1ec0c71e91943 100644 |
| --- a/net/http/http_stream_factory_impl.h |
| +++ b/net/http/http_stream_factory_impl.h |
| @@ -62,6 +62,12 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory { |
| void PreconnectStreams(int num_streams, const HttpRequestInfo& info) override; |
| const HostMappingRules* GetHostMappingRules() const override; |
| + enum JobType { |
| + NON_ALTERNATIVE, |
|
Ryan Hamilton
2016/05/06 21:33:14
How about MAIN?
Zhongyi Shi
2016/05/13 00:31:24
Done.
|
| + ALTERNATIVE, |
| + PRECONNECT, |
| + }; |
| + |
| private: |
| FRIEND_TEST_ALL_PREFIXES(HttpStreamFactoryImplRequestTest, SetPriority); |
| FRIEND_TEST_ALL_PREFIXES(HttpStreamFactoryImplRequestTest, DelayMainJob); |