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

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

Issue 2417693002: Allow MimeHandlerViewGuest be embedded inside OOPIFs (Closed)
Patch Set: Rebased Created 4 years, 1 month 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 "+cc/switches.h", # For cc command line switches. 2 "+cc/switches.h", # For cc command line switches.
3 "+components/display_compositor", 3 "+components/display_compositor",
4 "+components/variations", 4 "+components/variations",
5 "+services/ui/public", 5 "+services/ui/public",
6 "+third_party/zlib", 6 "+third_party/zlib",
7 7
8 # The renderer_host files should only call upwards in the layering via the 8 # The renderer_host files should only call upwards in the layering via the
9 # delegate interfaces. 9 # delegate interfaces.
10 "-content/browser/frame_host", 10 "-content/browser/frame_host",
(...skipping 27 matching lines...) Expand all
38 "+content/browser/frame_host/frame_tree.h", 38 "+content/browser/frame_host/frame_tree.h",
39 ], 39 ],
40 "render_widget_host_view_aura\.cc": [ 40 "render_widget_host_view_aura\.cc": [
41 "+content/browser/frame_host", 41 "+content/browser/frame_host",
42 ], 42 ],
43 "render_widget_host_view_event_handler\.cc": [ 43 "render_widget_host_view_event_handler\.cc": [
44 "+content/browser/frame_host", 44 "+content/browser/frame_host",
45 ], 45 ],
46 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved 46 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved
47 # to content/renderer_host, at which time this can be removed. 47 # to content/renderer_host, at which time this can be removed.
48 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse
49 # events to the correct owner RenderWidgetHostViewBase. It should be removed
50 # when all inner WebContents are based on OOPIF structure (as opposed to
51 # BrowserPlugin).
48 "render_widget_host_input_event_router.cc": [ 52 "render_widget_host_input_event_router.cc": [
49 "+content/browser/frame_host/render_widget_host_view_child_frame.h", 53 "+content/browser/frame_host/render_widget_host_view_child_frame.h",
54 "+content/browser/frame_host/render_widget_host_view_guest.h",
50 ], 55 ],
51 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698