Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: net/base/net_error_list.h

Issue 7289006: Basic HTTP pipelining support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use HttpStreamFactoryImpl::Job Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/http/http_network_session.h » ('j') | net/http/http_pipelined_host_pool.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file intentionally does not have header guards, it's included 5 // This file intentionally does not have header guards, it's included
6 // inside a macro to generate enum. 6 // inside a macro to generate enum.
7 7
8 // This file contains the list of network errors. 8 // This file contains the list of network errors.
9 9
10 // 10 //
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 // 2 - Server failure - The name server was unable to process this query 579 // 2 - Server failure - The name server was unable to process this query
580 // due to a problem with the name server. 580 // due to a problem with the name server.
581 // 4 - Not Implemented - The name server does not support the requested 581 // 4 - Not Implemented - The name server does not support the requested
582 // kind of query. 582 // kind of query.
583 // 5 - Refused - The name server refuses to perform the specified 583 // 5 - Refused - The name server refuses to perform the specified
584 // operation for policy reasons. 584 // operation for policy reasons.
585 NET_ERROR(DNS_SERVER_FAILED, -802) 585 NET_ERROR(DNS_SERVER_FAILED, -802)
586 586
587 // DNS transaction timed out. 587 // DNS transaction timed out.
588 NET_ERROR(DNS_TIMED_OUT, -803) 588 NET_ERROR(DNS_TIMED_OUT, -803)
589
590 // FIXME: Take the next number.
591 NET_ERROR(PIPELINE_EVICTION, -900)
OLDNEW
« no previous file with comments | « no previous file | net/http/http_network_session.h » ('j') | net/http/http_pipelined_host_pool.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698