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

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

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Overall code cleanup to request reviewers to PTAL. Created 4 years, 5 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 include_rules = [ 1 include_rules = [
2 # The frame_host files should only call upwards in the layering via the 2 # The frame_host files should only call upwards in the layering via the
3 # delegate interfaces. 3 # delegate interfaces.
4 "-content/browser/web_contents", 4 "-content/browser/web_contents",
5 "-content/public/browser/web_contents.h", 5 "-content/public/browser/web_contents.h",
6 "-content/public/browser/web_contents_delegate.h", 6 "-content/public/browser/web_contents_delegate.h",
7 "-content/public/browser/web_contents_view.h", 7 "-content/public/browser/web_contents_view.h",
8 8
9 "+third_party/kasko", 9 "+third_party/kasko",
10 ] 10 ]
11 11
12 specific_include_rules = { 12 specific_include_rules = {
13 ".*_(unit|browser)test\.cc": [ 13 ".*_(unit|browser)test\.cc": [
14 "+content/browser/web_contents", 14 "+content/browser/web_contents",
15 "+content/public/browser/web_contents.h", 15 "+content/public/browser/web_contents.h",
16 "+content/public/browser/web_contents_delegate.h", 16 "+content/public/browser/web_contents_delegate.h",
17 ], 17 ],
18 ".*interstitial_page_impl\.cc": [ 18 ".*interstitial_page_impl\.cc": [
19 # TODO(nasko): This should be removed once we remove 19 # TODO(nasko): This should be removed once we remove
20 # WebContentsObserver as the method of telling interstitial pages to 20 # WebContentsObserver as the method of telling interstitial pages to
21 # clean themselves up. 21 # clean themselves up.
22 "+content/browser/web_contents", 22 "+content/browser/web_contents",
23 "+content/public/browser/web_contents_delegate.h", 23 "+content/public/browser/web_contents_delegate.h",
24 ], 24 ],
25 "mixed_content_navigation_throttle\.(cc|h)": [
26 "+third_party/WebKit/public/platform/WebMixedContent.h",
27 ],
carlosk 2016/07/18 14:37:13 This include seems to conform to what I see in con
25 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698