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

Side by Side Diff: net/BUILD.gn

Issue 2886483002: Adds a new class HttpCache::Writers for multiple cache transactions reading from the network. (Closed)
Patch Set: Feedback addressed Created 3 years, 6 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
« no previous file with comments | « no previous file | net/http/http_cache.h » ('j') | net/http/http_cache_writers_unittest.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 "http/http_basic_state.cc", 828 "http/http_basic_state.cc",
829 "http/http_basic_state.h", 829 "http/http_basic_state.h",
830 "http/http_basic_stream.cc", 830 "http/http_basic_stream.cc",
831 "http/http_basic_stream.h", 831 "http/http_basic_stream.h",
832 "http/http_cache.cc", 832 "http/http_cache.cc",
833 "http/http_cache.h", 833 "http/http_cache.h",
834 "http/http_cache_lookup_manager.cc", 834 "http/http_cache_lookup_manager.cc",
835 "http/http_cache_lookup_manager.h", 835 "http/http_cache_lookup_manager.h",
836 "http/http_cache_transaction.cc", 836 "http/http_cache_transaction.cc",
837 "http/http_cache_transaction.h", 837 "http/http_cache_transaction.h",
838 "http/http_cache_writers.cc",
839 "http/http_cache_writers.h",
838 "http/http_chunked_decoder.cc", 840 "http/http_chunked_decoder.cc",
839 "http/http_chunked_decoder.h", 841 "http/http_chunked_decoder.h",
840 "http/http_content_disposition.cc", 842 "http/http_content_disposition.cc",
841 "http/http_content_disposition.h", 843 "http/http_content_disposition.h",
842 "http/http_network_layer.cc", 844 "http/http_network_layer.cc",
843 "http/http_network_layer.h", 845 "http/http_network_layer.h",
844 "http/http_network_session.cc", 846 "http/http_network_session.cc",
845 "http/http_network_session.h", 847 "http/http_network_session.h",
846 "http/http_network_session_peer.cc", 848 "http/http_network_session_peer.cc",
847 "http/http_network_session_peer.h", 849 "http/http_network_session_peer.h",
(...skipping 3814 matching lines...) Expand 10 before | Expand all | Expand 10 after
4662 "http/http_auth_handler_negotiate_unittest.cc", 4664 "http/http_auth_handler_negotiate_unittest.cc",
4663 "http/http_auth_handler_unittest.cc", 4665 "http/http_auth_handler_unittest.cc",
4664 "http/http_auth_multi_round_parse_unittest.cc", 4666 "http/http_auth_multi_round_parse_unittest.cc",
4665 "http/http_auth_preferences_unittest.cc", 4667 "http/http_auth_preferences_unittest.cc",
4666 "http/http_auth_sspi_win_unittest.cc", 4668 "http/http_auth_sspi_win_unittest.cc",
4667 "http/http_auth_unittest.cc", 4669 "http/http_auth_unittest.cc",
4668 "http/http_basic_state_unittest.cc", 4670 "http/http_basic_state_unittest.cc",
4669 "http/http_byte_range_unittest.cc", 4671 "http/http_byte_range_unittest.cc",
4670 "http/http_cache_lookup_manager_unittest.cc", 4672 "http/http_cache_lookup_manager_unittest.cc",
4671 "http/http_cache_unittest.cc", 4673 "http/http_cache_unittest.cc",
4674 "http/http_cache_writers_unittest.cc",
4672 "http/http_chunked_decoder_unittest.cc", 4675 "http/http_chunked_decoder_unittest.cc",
4673 "http/http_content_disposition_unittest.cc", 4676 "http/http_content_disposition_unittest.cc",
4674 "http/http_log_util_unittest.cc", 4677 "http/http_log_util_unittest.cc",
4675 "http/http_network_layer_unittest.cc", 4678 "http/http_network_layer_unittest.cc",
4676 "http/http_network_transaction_ssl_unittest.cc", 4679 "http/http_network_transaction_ssl_unittest.cc",
4677 "http/http_network_transaction_unittest.cc", 4680 "http/http_network_transaction_unittest.cc",
4678 "http/http_proxy_client_socket_pool_unittest.cc", 4681 "http/http_proxy_client_socket_pool_unittest.cc",
4679 "http/http_request_headers_unittest.cc", 4682 "http/http_request_headers_unittest.cc",
4680 "http/http_response_body_drainer_unittest.cc", 4683 "http/http_response_body_drainer_unittest.cc",
4681 "http/http_response_headers_unittest.cc", 4684 "http/http_response_headers_unittest.cc",
(...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after
6039 ] 6042 ]
6040 deps = [ 6043 deps = [
6041 ":net_fuzzer_test_support", 6044 ":net_fuzzer_test_support",
6042 ":test_support", 6045 ":test_support",
6043 "//base", 6046 "//base",
6044 "//net", 6047 "//net",
6045 ] 6048 ]
6046 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6049 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6047 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6050 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6048 } 6051 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_cache.h » ('j') | net/http/http_cache_writers_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698