1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
include_rules = [
"+content/gpu", # For gpu_info_collector.h. Needs to move to common\gpu.
# Listing of the remaining #chrome includes in content\browser. People are
# actively working on reducing this to 0.
# DO NOT ADD ANY MORE TO THIS LIST!!!
# See https://sites.google.com/a/chromium.org/dev/developers/content-module
# for more information.
"+chrome/browser/browser_url_handler.h",
# http://crbug.com/84078
"+chrome/browser/debugger/devtools_manager.h",
"+chrome/browser/debugger/devtools_netlog_observer.h",
# http://crbug.com/82782
"+chrome/browser/download/download_file_manager.h",
"+chrome/browser/download/download_manager.h",
"+chrome/browser/download/download_request_limiter.h",
"+chrome/browser/download/save_file_manager.h",
"+chrome/browser/download/download_types.h",
"+chrome/browser/download/download_util.h",
"+chrome/browser/renderer_host/download_resource_handler.h",
"+chrome/browser/renderer_host/download_throttling_resource_handler.h",
"+chrome/browser/renderer_host/save_file_resource_handler.h",
# http://crbug.com/76788
"+chrome/browser/profiles/profile.h",
"+chrome/browser/tab_contents/render_view_host_delegate_helper.h",
# ONLY USED BY TESTS
"+chrome/browser/ui/browser.h",
# DO NOT ADD ANY MORE TO THIS LIST!!! SEE ABOVE COMMENT
]
|