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

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

Issue 2883653002: Implement TouchSelectionEditing controls for OOPIF. (Closed)
Patch Set: ChildFrame client uses root view's animation defaults. Created 3 years, 7 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 27 matching lines...) Expand all
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_host_view_aura\.cc": [ 42 "render_widget_host_view_aura\.cc": [
43 "+content/browser/frame_host", 43 "+content/browser/frame_host",
44 ], 44 ],
45 "render_widget_host_view_event_handler\.cc": [ 45 "render_widget_host_view_event_handler\.cc": [
46 "+content/browser/frame_host", 46 "+content/browser/frame_host",
47 ], 47 ],
48 "touch_selection_controller_client_child_frame\.cc": [
49 "+content/browser/frame_host/render_widget_host_view_child_frame.h",
50 ],
Charlie Reis 2017/05/25 02:29:43 Please put this underneath Ken's TODO below, since
wjmaclean 2017/05/25 14:04:35 Done.
48 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved 51 # TODO(kenrb): RenderWidgetHostViewChildFrame should eventually be moved
49 # to content/renderer_host, at which time this can be removed. 52 # to content/renderer_host, at which time this can be removed.
50 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse 53 # RenderWidgetHostViewGuest dependency is needed to allow for routing mouse
51 # events to the correct owner RenderWidgetHostViewBase. It should be removed 54 # events to the correct owner RenderWidgetHostViewBase. It should be removed
52 # when all inner WebContents are based on OOPIF structure (as opposed to 55 # when all inner WebContents are based on OOPIF structure (as opposed to
53 # BrowserPlugin). 56 # BrowserPlugin).
54 "render_widget_host_input_event_router.cc": [ 57 "render_widget_host_input_event_router.cc": [
55 "+content/browser/frame_host/render_widget_host_view_child_frame.h", 58 "+content/browser/frame_host/render_widget_host_view_child_frame.h",
56 "+content/browser/frame_host/render_widget_host_view_guest.h", 59 "+content/browser/frame_host/render_widget_host_view_guest.h",
57 ], 60 ],
58 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698