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

Side by Side Diff: content/browser/loader/DEPS

Issue 1953593002: Move DevToolsNetLogObserver to c/b/loader and create stub of network service interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix comment Created 4 years, 7 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 # The core loading code in this directory is being transitioned into a separate 1 # The core loading code in this directory is being transitioned into a separate
2 # Mojo networking service. See http://crbug.com/598073. The first stage is to 2 # Mojo networking service. See http://crbug.com/598073. The first stage is to
3 # decouple the code that will be moved from the rest of content. These rules 3 # decouple the code that will be moved from the rest of content. These rules
4 # help ensure that we don't add more includes, and can progressively reduce the 4 # help ensure that we don't add more includes, and can progressively reduce the
5 # code's dependencies. 5 # code's dependencies.
6 # 6 #
7 # For each file, the first section shows includes that are allowed (i.e. because 7 # For each file, the first section shows includes that are allowed (i.e. because
8 # they are for files that will be moving as well). The second section, separated 8 # they are for files that will be moving as well). The second section, separated
9 # by a comment, lists files that we will have to decouple. 9 # by a comment, lists files that we will have to decouple.
10 specific_include_rules = { 10 specific_include_rules = {
11 "async_resource_handler\.(cc|h)": [ 11 "async_resource_handler\.(cc|h)": [
12 "-content", 12 "-content",
13 "+content/browser/loader/async_resource_handler.h", 13 "+content/browser/loader/async_resource_handler.h",
14 "+content/browser/loader/netlog_observer.h",
14 "+content/browser/loader/resource_buffer.h", 15 "+content/browser/loader/resource_buffer.h",
15 "+content/browser/loader/resource_dispatcher_host_impl.h", 16 "+content/browser/loader/resource_dispatcher_host_impl.h",
16 "+content/browser/loader/resource_handler.h", 17 "+content/browser/loader/resource_handler.h",
17 "+content/browser/loader/resource_message_delegate.h", 18 "+content/browser/loader/resource_message_delegate.h",
18 "+content/browser/loader/resource_message_filter.h", 19 "+content/browser/loader/resource_message_filter.h",
19 "+content/browser/loader/resource_request_info_impl.h", 20 "+content/browser/loader/resource_request_info_impl.h",
20 "+content/common/content_export.h", 21 "+content/common/content_export.h",
21 "+content/public/browser/resource_dispatcher_host_delegate.h", 22 "+content/public/browser/resource_dispatcher_host_delegate.h",
22 "+content/public/common/resource_response.h", 23 "+content/public/common/resource_response.h",
23 24
24 # TODO: these all have to be removed. 25 # TODO: these all have to be removed.
25 "+content/browser/devtools/devtools_netlog_observer.h",
26 "+content/browser/host_zoom_map_impl.h", 26 "+content/browser/host_zoom_map_impl.h",
27 "+content/browser/resource_context_impl.h", 27 "+content/browser/resource_context_impl.h",
28 "+content/public/common/content_features.h", 28 "+content/public/common/content_features.h",
29 29
30 # TODO: To be replaced by mojo. 30 # TODO: To be replaced by mojo.
31 "+content/common/resource_messages.h", 31 "+content/common/resource_messages.h",
32 "+content/common/view_messages.h", 32 "+content/common/view_messages.h",
33 ], 33 ],
34 "async_revalidation_driver\.(cc|h)": [ 34 "async_revalidation_driver\.(cc|h)": [
35 "-content", 35 "-content",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ], 69 ],
70 "global_routing_id\.h": [ 70 "global_routing_id\.h": [
71 "-content", 71 "-content",
72 ], 72 ],
73 "layered_resource_handler\.(cc|h)": [ 73 "layered_resource_handler\.(cc|h)": [
74 "-content", 74 "-content",
75 "+content/browser/loader/layered_resource_handler.h", 75 "+content/browser/loader/layered_resource_handler.h",
76 "+content/browser/loader/resource_handler.h", 76 "+content/browser/loader/resource_handler.h",
77 "+content/common/content_export.h", 77 "+content/common/content_export.h",
78 ], 78 ],
79 "netlog_observer\.(cc|h)": [
80 "-content",
81 "+content/browser/loader/netlog_observer.h",
82 "+content/browser/loader/resource_request_info_impl.h",
83 "+content/public/common/resource_response.h",
84
85 # TODO: These all have to be removed.
86 "+content/public/browser/browser_thread.h", # Only for DCHECK.
87 "+content/public/browser/content_browser_client.h", # To get NetLog.
88 "+content/public/common/resource_devtools_info.h",
89 ],
79 "power_save_block_resource_throttle\.(cc|h)": [ 90 "power_save_block_resource_throttle\.(cc|h)": [
80 "-content", 91 "-content",
81 "+content/browser/loader/power_save_block_resource_throttle.h", 92 "+content/browser/loader/power_save_block_resource_throttle.h",
82 "+content/public/browser/resource_throttle.h", 93 "+content/public/browser/resource_throttle.h",
83 94
84 # TODO: these all have to be removed. 95 # TODO: these all have to be removed.
85 "+content/public/browser/power_save_blocker.h", 96 "+content/public/browser/power_save_blocker.h",
86 ], 97 ],
87 "resource_dispatcher_host_impl\.(cc|h)": [ 98 "resource_dispatcher_host_impl\.(cc|h)": [
88 "-content", 99 "-content",
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 "+content/browser/loader/resource_scheduler.h", 256 "+content/browser/loader/resource_scheduler.h",
246 "+content/browser/loader/resource_scheduler_filter.h", 257 "+content/browser/loader/resource_scheduler_filter.h",
247 258
248 # TODO: To be replaced by mojo. 259 # TODO: To be replaced by mojo.
249 "+content/common/frame_messages.h", 260 "+content/common/frame_messages.h",
250 "+content/common/view_messages.h", 261 "+content/common/view_messages.h",
251 "+content/public/browser/browser_message_filter.h", 262 "+content/public/browser/browser_message_filter.h",
252 ], 263 ],
253 "sync_resource_handler\.(cc|h)": [ 264 "sync_resource_handler\.(cc|h)": [
254 "-content", 265 "-content",
266 "+content/browser/loader/netlog_observer.h",
255 "+content/browser/loader/resource_dispatcher_host_impl.h", 267 "+content/browser/loader/resource_dispatcher_host_impl.h",
256 "+content/browser/loader/resource_handler.h", 268 "+content/browser/loader/resource_handler.h",
257 "+content/browser/loader/resource_message_filter.h", 269 "+content/browser/loader/resource_message_filter.h",
258 "+content/browser/loader/resource_request_info_impl.h", 270 "+content/browser/loader/resource_request_info_impl.h",
259 "+content/browser/loader/sync_resource_handler.h", 271 "+content/browser/loader/sync_resource_handler.h",
260 "+content/public/browser/resource_dispatcher_host_delegate.h", 272 "+content/public/browser/resource_dispatcher_host_delegate.h",
261 "+content/public/browser/resource_request_info.h", 273 "+content/public/browser/resource_request_info.h",
262 "+content/public/common/resource_response.h", 274 "+content/public/common/resource_response.h",
263 275
264 # TODO: These all have to be removed.
265 "+content/browser/devtools/devtools_netlog_observer.h",
266 276
267 # TODO: To be replaced by mojo. 277 # TODO: To be replaced by mojo.
268 "+content/common/resource_messages.h", 278 "+content/common/resource_messages.h",
269 ], 279 ],
270 } 280 }
OLDNEW
« no previous file with comments | « content/browser/devtools/devtools_netlog_observer.cc ('k') | content/browser/loader/async_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698