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

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

Issue 2821473002: Service CreateNewWindow on the UI thread with a new mojo interface (Closed)
Patch Set: MakeShared goodness Created 3 years, 8 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 "+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 "+ui/latency", 7 "+ui/latency",
8 8
9 # The renderer_host files should only call upwards in the layering via the 9 # The renderer_host files should only call upwards in the layering via the
10 # delegate interfaces. 10 # delegate interfaces.
(...skipping 21 matching lines...) Expand all
32 ], 32 ],
33 "ime_adapter_android\.cc": [ 33 "ime_adapter_android\.cc": [
34 "+content/browser/frame_host", 34 "+content/browser/frame_host",
35 "+content/public/browser/web_contents.h", 35 "+content/public/browser/web_contents.h",
36 ], 36 ],
37 # TODO(nasko): Remove these exceptions once we've untangled the dependency 37 # TODO(nasko): Remove these exceptions once we've untangled the dependency
38 # of RenderViewHost on the FrameTree. 38 # of RenderViewHost on the FrameTree.
39 "render_view_host_impl\.(cc|h)": [ 39 "render_view_host_impl\.(cc|h)": [
40 "+content/browser/frame_host/frame_tree.h", 40 "+content/browser/frame_host/frame_tree.h",
41 ], 41 ],
42 "render_widget_helper\.cc": [
43 # RenderWidgetHelper is involved in RenderFrameHost creation.
44 "+content/browser/frame_host/render_frame_host_impl.h",
45 ],
46 "render_widget_host_view_aura\.cc": [ 42 "render_widget_host_view_aura\.cc": [
47 "+content/browser/frame_host", 43 "+content/browser/frame_host",
48 ], 44 ],
49 "render_widget_host_view_event_handler\.cc": [ 45 "render_widget_host_view_event_handler\.cc": [
50 "+content/browser/frame_host", 46 "+content/browser/frame_host",
51 ], 47 ],
52 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved 48 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved
53 # to content/renderer_host, at which time this can be removed. 49 # to content/renderer_host, at which time this can be removed.
54 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse 50 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse
55 # events to the correct owner RenderWidgetHostViewBase. It should be removed 51 # events to the correct owner RenderWidgetHostViewBase. It should be removed
56 # when all inner WebContents are based on OOPIF structure (as opposed to 52 # when all inner WebContents are based on OOPIF structure (as opposed to
57 # BrowserPlugin). 53 # BrowserPlugin).
58 "render_widget_host_input_event_router.cc": [ 54 "render_widget_host_input_event_router.cc": [
59 "+content/browser/frame_host/render_widget_host_view_child_frame.h", 55 "+content/browser/frame_host/render_widget_host_view_child_frame.h",
60 "+content/browser/frame_host/render_widget_host_view_guest.h", 56 "+content/browser/frame_host/render_widget_host_view_guest.h",
61 ], 57 ],
62 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698