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

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

Issue 9302024: Add client for background testing of HTTP pipelining. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 10 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 // The HTTP response contained multiple Location headers. 518 // The HTTP response contained multiple Location headers.
519 NET_ERROR(RESPONSE_HEADERS_MULTIPLE_LOCATION, -350) 519 NET_ERROR(RESPONSE_HEADERS_MULTIPLE_LOCATION, -350)
520 520
521 // SPDY server refused the stream. Client should retry. This should never be a 521 // SPDY server refused the stream. Client should retry. This should never be a
522 // user-visible error. 522 // user-visible error.
523 NET_ERROR(SPDY_SERVER_REFUSED_STREAM, -351) 523 NET_ERROR(SPDY_SERVER_REFUSED_STREAM, -351)
524 524
525 // SPDY server didn't respond to the PING message. 525 // SPDY server didn't respond to the PING message.
526 NET_ERROR(SPDY_PING_FAILED, -352) 526 NET_ERROR(SPDY_PING_FAILED, -352)
527 527
528 // The request couldn't be completed on an HTTP pipeline. Client should retry.
529 NET_ERROR(PIPELINE_EVICTION, -353)
530
528 // The cache does not have the requested entry. 531 // The cache does not have the requested entry.
529 NET_ERROR(CACHE_MISS, -400) 532 NET_ERROR(CACHE_MISS, -400)
530 533
531 // Unable to read from the disk cache. 534 // Unable to read from the disk cache.
532 NET_ERROR(CACHE_READ_FAILURE, -401) 535 NET_ERROR(CACHE_READ_FAILURE, -401)
533 536
534 // Unable to write to the disk cache. 537 // Unable to write to the disk cache.
535 NET_ERROR(CACHE_WRITE_FAILURE, -402) 538 NET_ERROR(CACHE_WRITE_FAILURE, -402)
536 539
537 // The operation is not supported for this entry. 540 // The operation is not supported for this entry.
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 // kind of query. 650 // kind of query.
648 // 5 - Refused - The name server refuses to perform the specified 651 // 5 - Refused - The name server refuses to perform the specified
649 // operation for policy reasons. 652 // operation for policy reasons.
650 NET_ERROR(DNS_SERVER_FAILED, -802) 653 NET_ERROR(DNS_SERVER_FAILED, -802)
651 654
652 // DNS transaction timed out. 655 // DNS transaction timed out.
653 NET_ERROR(DNS_TIMED_OUT, -803) 656 NET_ERROR(DNS_TIMED_OUT, -803)
654 657
655 // The entry was not found in cache, for cache-only lookups. 658 // The entry was not found in cache, for cache-only lookups.
656 NET_ERROR(DNS_CACHE_MISS, -804) 659 NET_ERROR(DNS_CACHE_MISS, -804)
657
658 // FIXME: Take the next number.
659 NET_ERROR(PIPELINE_EVICTION, -900)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698