Add Adreno GPU to deep memory profiler Android policies
[chromium-blink-merge.git] / net / http / http_pipelined_host_capability.h
blobd03a20893ea26a86bb1de15c4bfe79dedb78192f
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_HTTP_HTTP_PIPELINED_HOST_CAPABILITY_H_
6 #define NET_HTTP_HTTP_PIPELINED_HOST_CAPABILITY_H_
8 namespace net {
10 // These values are serialized in Preferences. Do not change these values and
11 // only add new ones at the end.
12 enum HttpPipelinedHostCapability {
13 PIPELINE_UNKNOWN = 0,
14 PIPELINE_INCAPABLE = 1,
15 PIPELINE_CAPABLE = 2,
16 PIPELINE_PROBABLY_CAPABLE = 3, // We are using pipelining, but haven't
17 // processed enough requests to record this
18 // host as known to be capable.
21 } // namespace net
23 #endif // NET_HTTP_HTTP_PIPELINED_HOST_CAPABILITY_H_