summaryrefslogtreecommitdiffstats
path: root/net/net.gyp
Commit message (Collapse)AuthorAgeFilesLines
* Rename origin_bound_cert files to server_bound_cert.mattm@chromium.org2012-03-221-8/+8
| | | | | | | | | BUG=115348 TEST=try bots Review URL: https://chromiumcodereview.appspot.com/9814028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128323 0039d316-1c4b-4281-b951-d872f2087c98
* Move X509Certificate::Verify into CertVerifyProc rsleevi@chromium.org2012-03-221-0/+20
| | | | | | | | | | | | | | | With this split, CertVerifyProc is responsible for interacting with the underlying PKIX path building and verification library, while X509Certificate is responsible for parsing certificates with the underlying crypto library and exposing a common interface for higher-level code such as UI. BUG=114343 TEST=net_unittests Review URL: https://chromiumcodereview.appspot.com/9691054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128172 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce a CertVerifierProc to handle system cert validation.rsleevi@chromium.org2012-03-221-0/+2
| | | | | | | | | | | | | | | | | | | | | | | In preparation for moving certificate path building and verification out of X509Certificate, introduce a CertVerifierProc that can be used by the MultiThreadedCertVerifier to verify certificates using the underlying system store. Unit tests previously coded against X509Certificate are now coded against the CertVerifierProc, as future CLs will shift verification into this interface. This was originally reviewed as http://codereview.chromium.org/9584041/ and http://codereview.chromium.org/9553014/ , and has been combined in order to preserve SVN history. BUG=114343 TEST=net_unittests R=wtc Review URL: https://chromiumcodereview.appspot.com/9812035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128150 0039d316-1c4b-4281-b951-d872f2087c98
* Make CertVerifier a pure virtual interface.rsleevi@chromium.org2012-03-211-1/+5
| | | | | | | | | | | | | The existing CertVerifier implementation has been renamed to MultiThreadedCertVerifier, consistent with ProxyResolver naming. This is patch 1 of N for http://crbug.com/114343 BUG=114343 TEST=Compiles and existing unittests pass. Review URL: https://chromiumcodereview.appspot.com/9476035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128090 0039d316-1c4b-4281-b951-d872f2087c98
* [net/dns] Refactoring of DnsConfigService.szym@chromium.org2012-03-161-3/+3
| | | | | | | | | | | | | | | | | | | - Replaces Observer with Callback. - The Callback is run within 100ms of any config change, not only on successful read. It is also run on errors in watches (registry and files). This allows HostResolverImpl to withdraw from using DnsTask until DnsConfig is read successfully. - Moves DnsHostsReader to dns_hosts.{h,cc}). - Handles missing HOSTS files. - Respects network adapter binding order in DnsConfigServiceWin. - Adds NetLog source for DnsConfig-related events. BUG=112856, 115460, 115494 TEST=./net_unittests --gtest_filter=DnsConfig* Review URL: http://codereview.chromium.org/9597029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127190 0039d316-1c4b-4281-b951-d872f2087c98
* Adding support of ogg/vorbis audio for androidqinmin@chromium.org2012-03-151-1/+0
| | | | | | | | | | | | Android should support ogg/vorbis audio, not ogg/theora video BUG= TEST= Review URL: http://codereview.chromium.org/9361067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126993 0039d316-1c4b-4281-b951-d872f2087c98
* Remove experimental support for MAC cookiesrsleevi@chromium.org2012-03-151-3/+0
| | | | | | | | | | | | | | | | | Remove the experimental support for MAC cookies, as defined in http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token . Support for strongly-bound cookies will be provided by support for TLS channel-bound cookies, as defined in http://tools.ietf.org/html/draft-balfanz-tls-obc BUG=none TEST=none R=abarth@chromium.org Review URL: http://codereview.chromium.org/9700056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126928 0039d316-1c4b-4281-b951-d872f2087c98
* Move the cookie store implementation into its own directory.erikwright@chromium.org2012-03-151-17/+17
| | | | | | | | | | | | In the initial step, forwarding headers are left in net/base/cookie_*h . After all clients are updated these will be removed and erikwright will be removed from net/base/OWNERS BUG=70818 TEST=compilation Review URL: http://codereview.chromium.org/9703011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126871 0039d316-1c4b-4281-b951-d872f2087c98
* SPDY - unkorked spdy_framer and spdy_protocol tests.rtenneti@google.com2012-03-151-4/+2
| | | | | | | | | | | | | Used TEST_P to parameterize SPDY/2 vs SPDY/3 versions so that spdy_framer_test and spdy_protocol_test are similar to the server code. BUG=117755 R=rch TEST=network unit tests Review URL: https://chromiumcodereview.appspot.com/9689078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126839 0039d316-1c4b-4281-b951-d872f2087c98
* [net/dns] Serve requests from HOSTS file if possible.szym@chromium.org2012-03-141-0/+3
| | | | | | | | | | | | | | If the DnsConfig is available, we can serve the requests synchronously in Resolve. However, we might not receive the DnsConfig until the Job is placed in the queue. In that case, we attempt to serve the jobs once DnsConfig is available. BUG=114826 TEST=./net_unittests --gtest_filter=HostResolverImplTest.ServeFromHosts Original review: https://chromiumcodereview.appspot.com/9667025/ Review URL: http://codereview.chromium.org/9705017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126697 0039d316-1c4b-4281-b951-d872f2087c98
* net: rework the EV metadataagl@chromium.org2012-03-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | (Reland of r126641, which was reverted in r126646) This is split off from https://chromiumcodereview.appspot.com/9663017/ (adding OCSP tests) and the primary motivation is to add the ability for unittests to add EV policies. Along the way: * I switched the policy strings to be inline, which saves a bunch of relocations. * I eliminated the duplicated policy strings and removed the data structures duplicating the static data on Windows. The functions that Windows needs can be implemented with a linear sweep over the static data. BUG=none TEST=net_unittests Review URL: https://chromiumcodereview.appspot.com/9691015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126655 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "net: rework the EV metadata"agl@chromium.org2012-03-141-1/+0
| | | | | | | | This reverts commit r126641. Shared build unhappy. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126646 0039d316-1c4b-4281-b951-d872f2087c98
* net: rework the EV metadataagl@chromium.org2012-03-141-0/+1
| | | | | | | | | | | | | | | | | | | | | This is split off from https://chromiumcodereview.appspot.com/9663017/ (adding OCSP tests) and the primary motivation is to add the ability for unittests to add EV policies. Along the way: * I switched the policy strings to be inline, which saves a bunch of relocations. * I eliminated the duplicated policy strings and removed the data structures duplicating the static data on Windows. The functions that Windows needs can be implemented with a linear sweep over the static data. BUG=none TEST=net_unittests Review URL: https://chromiumcodereview.appspot.com/9691015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126641 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 126559 - Broke XP Tests (2)rsleevi@chromium.org2012-03-141-3/+0
| | | | | | | | | | | | | | | | [net/dns] Serve requests from HOSTS file if possible. If the DnsConfig is available, we can serve the requests synchronously in Resolve. However, we might not receive the DnsConfig until the Job is placed in the queue. In that case, we attempt to serve the jobs once DnsConfig is available. BUG=114826 TEST=./net_unittests --gtest_filter=HostResolverImplTest.ServeFromHosts Review URL: http://codereview.chromium.org/9667025 TBR=szym@chromium.org Review URL: https://chromiumcodereview.appspot.com/9701014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126573 0039d316-1c4b-4281-b951-d872f2087c98
* [net/dns] Serve requests from HOSTS file if possible.szym@chromium.org2012-03-141-0/+3
| | | | | | | | | | | | | If the DnsConfig is available, we can serve the requests synchronously in Resolve. However, we might not receive the DnsConfig until the Job is placed in the queue. In that case, we attempt to serve the jobs once DnsConfig is available. BUG=114826 TEST=./net_unittests --gtest_filter=HostResolverImplTest.ServeFromHosts Review URL: http://codereview.chromium.org/9667025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126559 0039d316-1c4b-4281-b951-d872f2087c98
* SPDY - integration of spdy/3 code.rtenneti@google.com2012-03-121-2/+7
| | | | | | | | TEST=network unit tests and browser unit_tests R=willchan Review URL: https://chromiumcodereview.appspot.com/9618002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126175 0039d316-1c4b-4281-b951-d872f2087c98
* Make test server to talk with the python test server which is running on ↵jnd@chromium.org2012-03-121-4/+19
| | | | | | | | | | | | | | | | | remote machine. For Chromium/Android platform, since there is no python env support on Android device, we have to run the test server on the remote host and let the test server to talk with it. Also add the net_util.h into some test files to fix compilation error. They used to implicitly rely on the net_util.h definition by including test_server.h, but the net_util.h is removed from test_server.h in this patch. Since the fix in those test files are trivial, Ryan and Paweł are OK with the patch, just TBR to the owners to skip the owner presubmit check for landing. TBR=owners BUG=None TEST=net_unittests should pass on all platforms Review URL: http://codereview.chromium.org/9359051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126100 0039d316-1c4b-4281-b951-d872f2087c98
* [Sync] Create new top-level sync/ directoryakalin@chromium.org2012-03-101-1/+1
| | | | | | | | | | | | | Move sync .proto files to sync/protocol. Update all references. This begins the Great Sync Migration. BUG=117585,43624 TEST= Review URL: https://chromiumcodereview.appspot.com/9668028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125967 0039d316-1c4b-4281-b951-d872f2087c98
* Add net_unittests_run.maruel@chromium.org2012-03-091-0/+67
| | | | | | | | | | | | | This permits running net_unittests outside a chromium checkout. R=cbentzel@chromium.org BUG=98834 TEST= Review URL: http://codereview.chromium.org/9648019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125914 0039d316-1c4b-4281-b951-d872f2087c98
* Fork SPDY/2 and SPDY/3 versions of our SPDY tests, in preparation for landingrch@chromium.org2012-03-041-14/+31
| | | | | | | spdy 3 framer changes. Review URL: https://chromiumcodereview.appspot.com/9582034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124886 0039d316-1c4b-4281-b951-d872f2087c98
* Move TestURLRequestContextGetter to url_request_test_util.{h,cc}akalin@chromium.org2012-03-021-0/+5
| | | | | | | | | | | Make everything use this instead of rolling their own. BUG=113723 TEST= Review URL: https://chromiumcodereview.appspot.com/9562037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124758 0039d316-1c4b-4281-b951-d872f2087c98
* Add a force pipelining option to load flags.simonjam@chromium.org2012-03-011-0/+9
| | | | | | | | | | | | | | | | | | | | | Details: - Add a HttpPipelinedHostForced class for connections with forced requests. + Forced requests get their own pipeline and there's only one per host. + They always try to pipeline and won't retry if evicted. + Only one HttpStreamFactoryImpl::Job runs for all requests to the same origin with forced pipelining. All requests will fail if that Job fails. - Track HttpPipelinedHosts with a Key. Right now that's origin and force-pipelining, but it might be expanded to include content type. - Add a BufferedWriteStreamSocket that wraps a normal socket. It buffers Write() calls until a task fires to dispatch the buffer to the underlying socket. BUG=110794 TEST=net_unittests and unit_tests Review URL: http://codereview.chromium.org/9433015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124487 0039d316-1c4b-4281-b951-d872f2087c98
* Replace chrome/common/net/http_return.h with net/http/http_status_code.hakalin@chromium.org2012-02-271-0/+1
| | | | | | | | | | | | | Fill out all HTTP status codes from RFC 2616. Clean up sync deps. BUG=113723 TEST= Review URL: https://chromiumcodereview.appspot.com/9447046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123807 0039d316-1c4b-4281-b951-d872f2087c98
* Minor refactor of ProxyClientSocket.rch@chromium.org2012-02-251-2/+1
| | | | | | | | | | | Adds GetAuthController and RestartWithAuth from Http/Spdy ProxyClientSocket. BUG=115659 Review URL: http://codereview.chromium.org/9442020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123600 0039d316-1c4b-4281-b951-d872f2087c98
* Add an associative map type that allows values to expire after certain ↵rsleevi@chromium.org2012-02-241-0/+2
| | | | | | | | | | | durations. BUG=114343 Review URL: http://codereview.chromium.org/9407001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123454 0039d316-1c4b-4281-b951-d872f2087c98
* net: Split file_stream.h to file_stream_posix.h and win.hsatorux@chromium.org2012-02-241-0/+4
| | | | | | | | | | | | | | | POSIX and Windows have different implementations (i.e. private member variables and functions). Having separate header files is cleaner than managing the differences with #ifdefs BUG=none TEST=everything builds as before Review URL: http://codereview.chromium.org/9431014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123401 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "net: remove DnsRRResolver"agl@chromium.org2012-02-231-0/+3
| | | | | | This reverts commit r114845. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123247 0039d316-1c4b-4281-b951-d872f2087c98
* [net] Asynchronous DNS ready for experiments.szym@chromium.org2012-02-211-3/+0
| | | | | | | | | | | | | | | If started with --enable-async-dns, HostResolverImpl will use DnsConfigService to determine system DNS configuration and DnsTransaction to resolve host names. It will fallback to HostResolverProc on failure. BUG=90881, 107880, 113829 TEST=./net_unittests --gtest_filter=HostResolverImpl*:Dns* Review URL: http://codereview.chromium.org/9369045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122878 0039d316-1c4b-4281-b951-d872f2087c98
* Remove WebSocketFrameHandler.yutak@chromium.org2012-02-151-3/+0
| | | | | | | | | | | | | | | | | WebSocketFrameHandler supports only old frame format (hybi-00) and its parser functionality has never been used (i.e. used with unbuffered mode) for a long time. This change removes WebSocketFrameHandler and lets WebSocketJob handle incoming and outgoing frame data directly. BUG=none TEST=none Review URL: http://codereview.chromium.org/9112003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122074 0039d316-1c4b-4281-b951-d872f2087c98
* Properly parse UTF8Strings in certificates on Windows.rsleevi@chromium.org2012-02-151-1/+7
| | | | | | | | | | BUG=114168 TEST=https://www.verisign.co.jp appears correctly regardless of system locale. Additionally, net_unittests:X509TypesTest* should cover this. Review URL: https://chromiumcodereview.appspot.com/9358080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122053 0039d316-1c4b-4281-b951-d872f2087c98
* [net/dns] Fixes to DnsConfigServiceWin szym@chromium.org2012-02-111-0/+1
| | | | | | | | | | | | | | | | Reject empty string16 early to avoid exception when converting to string. Default to 53, if port is not set. Fix CreateAdapterAddresses for the case there is more than one address. BUG=113692, 113693 TEST=./net_unittest --gtest_filter=DnsConfigService* Review URL: http://codereview.chromium.org/9384009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121573 0039d316-1c4b-4281-b951-d872f2087c98
* Adds support for the credentials frame.rch@chromium.org2012-02-081-0/+3
| | | | | | | | | | | | Need to allow spdy sessions to see if the underlying socket is required OBCs. If so, and if pooling a connection, then we need to generate a CREDENTIALS frame for this origin. Need to add support for the RST_FRAME status code of INVALID CREDENTIALS Review URL: http://codereview.chromium.org/9294001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120923 0039d316-1c4b-4281-b951-d872f2087c98
* Move CookieStore unittests to a separate file.droger@google.com2012-02-031-2/+6
| | | | | | | | | | | | | This is a follow up from http://codereview.chromium.org/8953028/. This allows other CookieStore implementations to benefit from the tests. BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/9310051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120355 0039d316-1c4b-4281-b951-d872f2087c98
* Added Net logging to FileStream.ahendrickson@chromium.org2012-02-021-0/+2
| | | | | | | | | | | | | The net logging doesn't currently do anything, but is ready if some system wants to pass it in. This is the first of 4 CLs that will enable net logging for downloads. BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/9288084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120226 0039d316-1c4b-4281-b951-d872f2087c98
* Improve parsing of the Content-Disposition headerabarth@chromium.org2012-01-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous, we were using GetHeaderParamValue to parse the Content-Disposition header, which describes itself as a "quick and dirty implementation." After this patch, we use more of our normal HTTP parsing machinery, making our parsing much less quirky and better aligned with RFC 6266. Some notes: 1) Many of the test cases for parsing the Content-Disposition header included the string "Content-Disposition: " in the input. I've looked through all of the callers of these functions, and that seems to be completely bogus. The old parser wasn't careful enough to see that as a problem, but the new one follows the spec more closely. I've updated the test cases to remove this string. 2) After this patch, there's a bunch of code in net_util.cc that really should be moved to http_content_disposition.cc. I didn't move that code in this patch because I didn't want this path to be too large. I'll move it in a future patch. 3) In a future patch, I'll audit the codebase for callers of GetHeaderParamValue. With any luck, we'll be able to remove them all and delete this less-than-amazing function. BUG=65423 Review URL: http://codereview.chromium.org/9234055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119378 0039d316-1c4b-4281-b951-d872f2087c98
* DnsClient refactoring + features (timeout, suffix search, server rotation).szym@chromium.org2012-01-261-4/+0
| | | | | | | | | | | | | | DnsClient::Request ==> DnsTransaction DnsTransaction ==> DnsTransactionImpl DnsClient ==> DnsTransactionFactory BUG=109949 TEST=net_unittests --gtest_filter=Dns* Review URL: http://codereview.chromium.org/9190031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119146 0039d316-1c4b-4281-b951-d872f2087c98
* net: Don't merge HTTP headers and body if the body is not in memory.satorux@chromium.org2012-01-241-0/+1
| | | | | | | | | | | | | UploadDataStream::MarkConsumedAndFillBuffer() may touch the file system if the body data comes from a file. BUG=72001,107966 TEST=added tests. Review URL: http://codereview.chromium.org/9270030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118769 0039d316-1c4b-4281-b951-d872f2087c98
* Factor out chunk encoding logic into HttpStreamParser::EncodeChunk().satorux@chromium.org2012-01-211-0/+1
| | | | | | | | | | | | | | | | | | The logic is meaty enough to be factored out. Add unit tests along the way. The original patch (crrev.com/118265) was reverted as it introduced a new static initializer. This version fixed that problem by defining the constant in the .h file. To be extra careful, replaced kChunkBufferSize with a member variable chunk_buffer_size_. BUG=72001 TEST=add unit tests. run tools/linux/dump-static-initializers.py locally to confirm that new static initializers are not introduced. Review URL: http://codereview.chromium.org/9176009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118566 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 118265 (added a static initializer on linux)thakis@chromium.org2012-01-191-1/+0
| | | | | | | | | | | | | | | | | | - Factor out chunk encoding logic into HttpStreamParser::EncodeChunk(). The logic is meaty enough to be factored out. Add unit tests along the way. BUG=72001 TEST=add unit tests. Review URL: http://codereview.chromium.org/9242018 TBR=satorux@chromium.org Review URL: https://chromiumcodereview.appspot.com/9264010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118295 0039d316-1c4b-4281-b951-d872f2087c98
* Factor out chunk encoding logic into HttpStreamParser::EncodeChunk().satorux@chromium.org2012-01-191-0/+1
| | | | | | | | | | | | | The logic is meaty enough to be factored out. Add unit tests along the way. BUG=72001 TEST=add unit tests. Review URL: http://codereview.chromium.org/9242018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118265 0039d316-1c4b-4281-b951-d872f2087c98
* Adds PriorityQueue and PrioritizedDispatcher.szym@chromium.org2012-01-061-1/+6
| | | | | | | | | | | This will be used in HostResolverImpl to dispatch Jobs. BUG=109426 TEST=./net_unittests --gtest_filter=PriorityQueue*:PrioritizedDispatcher* Review URL: http://codereview.chromium.org/9113022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116736 0039d316-1c4b-4281-b951-d872f2087c98
* base::Bind: Remove OldCompletionCallback.jhawkins@chromium.org2012-01-031-1/+0
| | | | | | | | | | BUG=none TEST=none R=groby,awong,csilv Review URL: http://codereview.chromium.org/9064007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116158 0039d316-1c4b-4281-b951-d872f2087c98
* Move net/base/sys_byteorder.h to base/sys_byteorder.hisherman@chromium.org2011-12-281-1/+0
| | | | | | | | | | | | | | Two motivations: (1) There are currently clients in src/crypto that need the same logic. (2) There is soon to be a client in src/chrome/common that needs the 64-bit version of this logic, which is currently inlined in a src/crypto implementation file. BUG=103480 TEST=compiles Review URL: http://codereview.chromium.org/8949026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115926 0039d316-1c4b-4281-b951-d872f2087c98
* Changes to read SPDY headers incrementally. rtenneti@chromium.org2011-12-251-0/+3
| | | | | | | | | | | | | | | | | | | | | Added buffered_spdy_framer class to support buffering of spdy control header frames. It calls SpdySession's OnSyn, OnSynReply and OnHeaders methods after receiving all the control frame header data. spdy_framer*.* - integrated changes from the server. Changed OnControlFrameHeaderData to send control frame instead of stream_id. Merged changes from the following issue into this issue. http://codereview.chromium.org/8953012/ R=willchan TEST=network unit tests Review URL: http://codereview.chromium.org/8980015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115769 0039d316-1c4b-4281-b951-d872f2087c98
* Build-fix for ssl_false_start_blacklist_processpeter@chromium.org2011-12-211-0/+7
| | | | | | | | | | | | | r114681 introduced a call to dlsym(), which has to be explicitly linked in when using Linux as the host operating system to target Android. The ssl_ false_start_blacklist_process is solely being build for the host target. BUG= TEST= Review URL: http://codereview.chromium.org/8968013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115313 0039d316-1c4b-4281-b951-d872f2087c98
* Miscellaneous net.gyp cleanups.wtc@chromium.org2011-12-211-2/+3
| | | | | | | | | | | | | List files in the correct order. Add the ftp/ftp_directory_listing_parser_unittest.h header. R=droger@google.com,rtenneti@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/8956033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115235 0039d316-1c4b-4281-b951-d872f2087c98
* Add request_priority.h to net.gyp.mmenke@chromium.org2011-12-201-0/+1
| | | | | | | | | | | Not required for compilation, but makes it more discoverable from IDEs. BUG=none Review URL: http://codereview.chromium.org/9008016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115205 0039d316-1c4b-4281-b951-d872f2087c98
* net: add a tool to dump CRL sets.agl@chromium.org2011-12-191-1/+12
| | | | | | | | | | | | | This tool is used in the build pipeline to verify that a candidate CRL set can be correctly parsed by the Chromium code. BUG=none TEST=none Review URL: http://codereview.chromium.org/8977001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115028 0039d316-1c4b-4281-b951-d872f2087c98
* Reland after fixes.jhawkins@chromium.org2011-12-171-0/+1
| | | | | | | | | | | | base::Bind: Remove even moar OldCompletionCallback. BUG=none TEST=none R=dpapad Review URL: http://codereview.chromium.org/8947024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114896 0039d316-1c4b-4281-b951-d872f2087c98
* net: remove DnsRRResolveragl@chromium.org2011-12-161-3/+0
| | | | | | | | | | BUG=none TEST=compiles Review URL: http://codereview.chromium.org/8963019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114845 0039d316-1c4b-4281-b951-d872f2087c98