index
:
chromium_src.git
ignore/bar
ignore/foo
infra/config
lkcr
lkgr
master
replicant-6.0
central chromium sources
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
net
/
http
/
http_stream_parser.cc
Commit message (
Expand
)
Author
Age
Files
Lines
*
Switching profiler instrumentations from ScopedProfile to ScopedTracker. This...
vadimt
2014-10-29
1
-7
/
+7
*
Standardize usage of virtual/override/final in net/
dcheng
2014-10-21
1
-1
/
+1
*
Adding instrumentation to locate the source of jankiness.
vadimt
2014-10-17
1
-0
/
+9
*
Adding instrumentation to locate the source of jankiness.
vadimt
2014-10-13
1
-0
/
+6
*
Remove HttpStream::GetResponseInfo, which is not currently used.
mmenke@chromium.org
2014-05-29
1
-4
/
+0
*
Remove DCHECK in HttpStreamParser::ReadResponseHeaders.
mmenke@chromium.org
2014-05-16
1
-3
/
+0
*
Let HttpStreamParser read 4xx/5xx HTTP responses after CONNECTION_RESET on up...
mmenke@chromium.org
2014-04-23
1
-132
/
+224
*
Refactor HttpStreamParser to move state transition logic out of its DoLoop.
mmenke@chromium.org
2014-04-15
1
-53
/
+52
*
Retry requests on reused sockets that receive ERR_EMPTY_RESPONSE.
davidben@chromium.org
2014-03-18
1
-1
/
+1
*
Add "received_bytes" getter to HttpSteamParser.
eustas@chromium.org
2013-12-09
1
-0
/
+6
*
net: don't preserve 1xx responses in parser buffer.
agl@chromium.org
2013-10-02
1
-49
/
+58
*
Make net and ipc explicitly use the base namespace for Values.
brettw@chromium.org
2013-06-13
1
-5
/
+6
*
Rewrite scoped_ptr<T>(NULL) to use the default ctor in net/.
dcheng@chromium.org
2013-06-12
1
-1
/
+0
*
net: use IsSecureScheme rather than matching "https".
agl@chromium.org
2013-06-12
1
-4
/
+4
*
Use a direct include of strings headers in net/http/.
avi@chromium.org
2013-06-11
1
-2
/
+2
*
Update net/ to use scoped_refptr<T>::get() rather than implicit "operator T*"
rsleevi@chromium.org
2013-06-01
1
-26
/
+25
*
net: don't process truncated headers on HTTPS connections.
agl@chromium.org
2013-05-29
1
-13
/
+18
*
net: Remove use of ALLOW_THIS_IN_INITIALIZER_LIST.
scherkus@chromium.org
2013-04-30
1
-1
/
+1
*
Add a ConnectionInfo enum which describes the kind of connection used to fetc...
rch@chromium.org
2013-03-13
1
-0
/
+1
*
net: Split sync part of UploadFileElementReader as UploadFileElementReaderSync
hashimoto@chromium.org
2012-12-20
1
-2
/
+2
*
net: Remove UploadDataStream* argument from HttpStream::SendRequest
hashimoto@chromium.org
2012-11-15
1
-26
/
+26
*
Update an outdated comment.
eroman@chromium.org
2012-11-03
1
-3
/
+3
*
net: Stop passing ownership of UploadDataStream from HttpNetworkTransaction t...
hashimoto@chromium.org
2012-11-01
1
-8
/
+6
*
net: Delete special logic for chunked upload
hashimoto@chromium.org
2012-10-22
1
-120
/
+55
*
net: Use UploadDataStream::Read() instead of ReadSync()
hashimoto@chromium.org
2012-10-18
1
-27
/
+35
*
net: Make UploadDataStream::Read() asynchronous
hashimoto@chromium.org
2012-10-17
1
-4
/
+4
*
net-internals: Add HTTP_TRANSACTION_SEND_REQUEST_BODY event
mmenke@chromium.org
2012-10-11
1
-1
/
+32
*
net: Return size of upload as well as position from HttpTransaction::GetUploa...
hashimoto@chromium.org
2012-08-30
1
-3
/
+3
*
Do not enqueue multiple socket writes performing an HTTP chunked request
rsleevi@chromium.org
2012-06-15
1
-4
/
+21
*
Make HttpStream take a scoped_ptr<UploadDataStream>, to clearly communicate t...
rsleevi@chromium.org
2012-06-14
1
-3
/
+3
*
NetLogEventParameter to Callback refactoring 5.
mmenke@chromium.org
2012-06-13
1
-1
/
+1
*
Make NetLog take in callbacks that return Values rather
mmenke@chromium.org
2012-06-10
1
-7
/
+7
*
fixed issue 128383 - replace GetPeerAddress(AddressList* address) with GetPee...
zhaoqin@chromium.org
2012-06-08
1
-3
/
+3
*
Reimplements net::AddressList without struct addrinfo.
szym@chromium.org
2012-05-07
1
-1
/
+1
*
Report cases where the connection appears to close too early while transferri...
cbentzel@chromium.org
2012-04-20
1
-6
/
+34
*
Allow broken servers to send us multiple identical Location and
mmenke@chromium.org
2012-03-21
1
-15
/
+6
*
net: Rework UploadDataStream API by introducing Read().
satorux@chromium.org
2012-02-08
1
-51
/
+67
*
net: Introduce SeekableIOBuffer and clean up HttpStreamParser.
satorux@chromium.org
2012-02-07
1
-15
/
+109
*
net: Replace use of memmove() with DrainableIOBuffer.
satorux@chromium.org
2012-01-31
1
-15
/
+19
*
net: Give more descriptive names for code around the request merging logic.
satorux@chromium.org
2012-01-24
1
-4
/
+5
*
net: Don't merge HTTP headers and body if the body is not in memory.
satorux@chromium.org
2012-01-24
1
-27
/
+37
*
Split DoSendBody() to DoSendChunkedBody() and DoSendNonChunkedBody().
satorux@chromium.org
2012-01-22
1
-47
/
+58
*
Factor out chunk encoding logic into HttpStreamParser::EncodeChunk().
satorux@chromium.org
2012-01-21
1
-18
/
+38
*
net: merge HTTP headers and body when the sum is small enough.
agl@chromium.org
2012-01-19
1
-36
/
+46
*
Revert 118265 (added a static initializer on linux)
thakis@chromium.org
2012-01-19
1
-42
/
+18
*
Factor out chunk encoding logic into HttpStreamParser::EncodeChunk().
satorux@chromium.org
2012-01-19
1
-18
/
+42
*
Minor clean-up for HttpStreamParser::DoSendBody()
satorux@chromium.org
2012-01-19
1
-4
/
+3
*
Add comments to HttpStreamParser::DoSendBody().
satorux@chromium.org
2012-01-19
1
-2
/
+10
*
Revert "net: merge HTTP headers and body when the sum is small enough."
agl@chromium.org
2012-01-18
1
-45
/
+36
*
net: merge HTTP headers and body when the sum is small enough.
agl@chromium.org
2012-01-18
1
-36
/
+45
[next]