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

Side by Side Diff: net/net.gyp

Issue 4194001: Implement exponential back-off mechanism and enforce it at the URLRequestHttpJob level. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 'spdy/spdy_session.cc', 641 'spdy/spdy_session.cc',
642 'spdy/spdy_session.h', 642 'spdy/spdy_session.h',
643 'spdy/spdy_session_pool.cc', 643 'spdy/spdy_session_pool.cc',
644 'spdy/spdy_session_pool.h', 644 'spdy/spdy_session_pool.h',
645 'spdy/spdy_settings_storage.cc', 645 'spdy/spdy_settings_storage.cc',
646 'spdy/spdy_settings_storage.h', 646 'spdy/spdy_settings_storage.h',
647 'spdy/spdy_stream.cc', 647 'spdy/spdy_stream.cc',
648 'spdy/spdy_stream.h', 648 'spdy/spdy_stream.h',
649 'url_request/https_prober.h', 649 'url_request/https_prober.h',
650 'url_request/https_prober.cc', 650 'url_request/https_prober.cc',
651 'url_request/request_throttler_entry.cc',
652 'url_request/request_throttler_entry.h',
653 'url_request/request_throttler_entry_interface.h',
654 'url_request/request_throttler_header_adapter.h',
655 'url_request/request_throttler_header_adapter.cc',
656 'url_request/request_throttler_header_interface.h',
657 'url_request/request_throttler_manager.cc',
658 'url_request/request_throttler_manager.h',
651 'url_request/url_request.cc', 659 'url_request/url_request.cc',
652 'url_request/url_request.h', 660 'url_request/url_request.h',
653 'url_request/url_request_about_job.cc', 661 'url_request/url_request_about_job.cc',
654 'url_request/url_request_about_job.h', 662 'url_request/url_request_about_job.h',
655 'url_request/url_request_context.cc', 663 'url_request/url_request_context.cc',
656 'url_request/url_request_context.h', 664 'url_request/url_request_context.h',
657 'url_request/url_request_data_job.cc', 665 'url_request/url_request_data_job.cc',
658 'url_request/url_request_data_job.h', 666 'url_request/url_request_data_job.h',
659 'url_request/url_request_error_job.cc', 667 'url_request/url_request_error_job.cc',
660 'url_request/url_request_error_job.h', 668 'url_request/url_request_error_job.h',
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 'spdy/spdy_stream_unittest.cc', 947 'spdy/spdy_stream_unittest.cc',
940 'spdy/spdy_test_util.cc', 948 'spdy/spdy_test_util.cc',
941 'spdy/spdy_test_util.h', 949 'spdy/spdy_test_util.h',
942 'test/python_utils_unittest.cc', 950 'test/python_utils_unittest.cc',
943 'tools/dump_cache/url_to_filename_encoder.cc', 951 'tools/dump_cache/url_to_filename_encoder.cc',
944 'tools/dump_cache/url_to_filename_encoder.h', 952 'tools/dump_cache/url_to_filename_encoder.h',
945 'tools/dump_cache/url_to_filename_encoder_unittest.cc', 953 'tools/dump_cache/url_to_filename_encoder_unittest.cc',
946 'tools/dump_cache/url_utilities.h', 954 'tools/dump_cache/url_utilities.h',
947 'tools/dump_cache/url_utilities.cc', 955 'tools/dump_cache/url_utilities.cc',
948 'tools/dump_cache/url_utilities_unittest.cc', 956 'tools/dump_cache/url_utilities_unittest.cc',
957 'url_request/request_throttler_unittest.cc',
949 'url_request/url_request_job_tracker_unittest.cc', 958 'url_request/url_request_job_tracker_unittest.cc',
950 'url_request/url_request_unittest.cc', 959 'url_request/url_request_unittest.cc',
951 'url_request/url_request_unittest.h', 960 'url_request/url_request_unittest.h',
952 'url_request/view_cache_helper_unittest.cc', 961 'url_request/view_cache_helper_unittest.cc',
953 'websockets/websocket_frame_handler_unittest.cc', 962 'websockets/websocket_frame_handler_unittest.cc',
954 'websockets/websocket_handshake_draft75_unittest.cc', 963 'websockets/websocket_handshake_draft75_unittest.cc',
955 'websockets/websocket_handshake_handler_unittest.cc', 964 'websockets/websocket_handshake_handler_unittest.cc',
956 'websockets/websocket_handshake_unittest.cc', 965 'websockets/websocket_handshake_unittest.cc',
957 'websockets/websocket_job_unittest.cc', 966 'websockets/websocket_job_unittest.cc',
958 'websockets/websocket_throttle_unittest.cc', 967 'websockets/websocket_throttle_unittest.cc',
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 ], 1403 ],
1395 }], 1404 }],
1396 ], 1405 ],
1397 } 1406 }
1398 1407
1399 # Local Variables: 1408 # Local Variables:
1400 # tab-width:2 1409 # tab-width:2
1401 # indent-tabs-mode:nil 1410 # indent-tabs-mode:nil
1402 # End: 1411 # End:
1403 # vim: set expandtab tabstop=2 shiftwidth=2: 1412 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698