summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorsimonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-02 00:51:24 +0000
committersimonjam@chromium.org <simonjam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-02 00:51:24 +0000
commit108ee3c68a4399c65ad3411fb17aa9036d84dbd3 (patch)
treeb4568bf7299f86d0731661aacdc9b353736c6b66 /net/http
parent5b03b1d247a633cd19efc8237ee5f28794e1f1cc (diff)
downloadchromium_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.h2
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 {