diff options
author | simonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 00:51:24 +0000 |
---|---|---|
committer | simonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 00:51:24 +0000 |
commit | 108ee3c68a4399c65ad3411fb17aa9036d84dbd3 (patch) | |
tree | b4568bf7299f86d0731661aacdc9b353736c6b66 /net/http | |
parent | 5b03b1d247a633cd19efc8237ee5f28794e1f1cc (diff) | |
download | chromium_src-108ee3c68a4399c65ad3411fb17aa9036d84dbd3.zip chromium_src-108ee3c68a4399c65ad3411fb17aa9036d84dbd3.tar.gz chromium_src-108ee3c68a4399c65ad3411fb17aa9036d84dbd3.tar.bz2 |
Fix shared library build in net.
BUG=None
TEST=Build on Win Shared
Review URL: http://codereview.chromium.org/8770031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112585 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_pipelined_host_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_pipelined_host_impl.h b/net/http/http_pipelined_host_impl.h index af78005..f74de88 100644 --- a/net/http/http_pipelined_host_impl.h +++ b/net/http/http_pipelined_host_impl.h @@ -64,7 +64,7 @@ class NET_EXPORT_PRIVATE HttpPipelinedHostImpl // Returns the maximum number of in-flight pipelined requests we'll allow on a // single connection. - NET_EXPORT_PRIVATE static int max_pipeline_depth() { return 3; } + static int max_pipeline_depth() { return 3; } private: struct PipelineInfo { |