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

Side by Side Diff: net/net.gyp

Issue 10701050: net: Implement canceling of all async operations in FileStream. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Correct fix for UploadFileElementReader Created 8 years, 3 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'base/dnssec_chain_verifier.h', 126 'base/dnssec_chain_verifier.h',
127 'base/dnssec_keyset.cc', 127 'base/dnssec_keyset.cc',
128 'base/dnssec_keyset.h', 128 'base/dnssec_keyset.h',
129 'base/escape.cc', 129 'base/escape.cc',
130 'base/escape.h', 130 'base/escape.h',
131 'base/ev_root_ca_metadata.cc', 131 'base/ev_root_ca_metadata.cc',
132 'base/ev_root_ca_metadata.h', 132 'base/ev_root_ca_metadata.h',
133 'base/expiring_cache.h', 133 'base/expiring_cache.h',
134 'base/file_stream.cc', 134 'base/file_stream.cc',
135 'base/file_stream.h', 135 'base/file_stream.h',
136 'base/file_stream_context.cc',
137 'base/file_stream_context.h',
138 'base/file_stream_context_posix.cc',
139 'base/file_stream_context_win.cc',
136 'base/file_stream_metrics.cc', 140 'base/file_stream_metrics.cc',
137 'base/file_stream_metrics.h', 141 'base/file_stream_metrics.h',
138 'base/file_stream_metrics_posix.cc', 142 'base/file_stream_metrics_posix.cc',
139 'base/file_stream_metrics_win.cc', 143 'base/file_stream_metrics_win.cc',
140 'base/file_stream_net_log_parameters.cc', 144 'base/file_stream_net_log_parameters.cc',
141 'base/file_stream_net_log_parameters.h', 145 'base/file_stream_net_log_parameters.h',
142 'base/file_stream_posix.cc',
143 'base/file_stream_posix.h',
144 'base/file_stream_whence.h', 146 'base/file_stream_whence.h',
145 'base/file_stream_win.cc',
146 'base/file_stream_win.h',
147 'base/filter.cc', 147 'base/filter.cc',
148 'base/filter.h', 148 'base/filter.h',
149 'base/gzip_filter.cc', 149 'base/gzip_filter.cc',
150 'base/gzip_filter.h', 150 'base/gzip_filter.h',
151 'base/gzip_header.cc', 151 'base/gzip_header.cc',
152 'base/gzip_header.h', 152 'base/gzip_header.h',
153 'base/host_cache.cc', 153 'base/host_cache.cc',
154 'base/host_cache.h', 154 'base/host_cache.h',
155 'base/host_mapping_rules.cc', 155 'base/host_mapping_rules.cc',
156 'base/host_mapping_rules.h', 156 'base/host_mapping_rules.h',
(...skipping 2151 matching lines...) Expand 10 before | Expand all | Expand 10 after
2308 '--result', '<@(_outputs)', 2308 '--result', '<@(_outputs)',
2309 '--isolate', 'net_unittests.isolate', 2309 '--isolate', 'net_unittests.isolate',
2310 ], 2310 ],
2311 }, 2311 },
2312 ], 2312 ],
2313 }, 2313 },
2314 ], 2314 ],
2315 }], 2315 }],
2316 ], 2316 ],
2317 } 2317 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698