OLD | NEW |
---|---|
(Empty) | |
1 include_rules = [ | |
2 # The frame_host files should only call upwards in the layering via the | |
3 # delegate interfaces. | |
4 "-content/browser/web_contents", | |
5 "-content/public/browser/web_contents.h", | |
6 "-content/public/browser/web_contents_delegate.h", | |
7 "-content/public/browser/web_contents_view.h", | |
8 ] | |
9 | |
jam
2013/10/29 01:26:00
nit: extra blank line
nasko
2013/10/29 13:19:54
Done.
| |
10 | |
11 specific_include_rules = { | |
12 ".*_(unit|browser)test\.cc": [ | |
13 # TODO(nasko): navigation_controller_impl_unitttests needs this, | |
14 # investigate how to remove it. | |
jam
2013/10/29 01:26:00
nit: it's ok if tests depend on other layers, we h
nasko
2013/10/29 13:19:54
Done.
| |
15 "+content/browser/web_contents", | |
16 "+content/browser/web_contents/web_contents_impl", | |
jam
2013/10/29 01:26:00
nit: this isn't necessary given the line above?
nasko
2013/10/29 13:19:54
Done.
| |
17 "+content/public/browser/web_contents_delegate.h", | |
18 ], | |
19 ".*interstitial_page_impl\.cc": [ | |
20 # TODO(nasko): This should be removed once we remove | |
21 # WebContentsObserver as the method of telling interstitial pages to | |
22 # clean themselves up. | |
23 "+content/browser/web_contents", | |
24 "+content/browser/web_contents/web_contents_impl", | |
jam
2013/10/29 01:26:00
ditto
nasko
2013/10/29 13:19:54
Done.
| |
25 "+content/public/browser/web_contents_delegate.h", | |
26 ], | |
27 } | |
OLD | NEW |