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

Side by Side Diff: content/browser/web_contents/web_contents_view_child_frame.cc

Issue 2505113002: Drag-and-drop: Target drag messages to specific RenderWidgets. (Closed)
Patch Set: Small fix. 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 // Copyright (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/web_contents/web_contents_view_child_frame.h" 5 #include "content/browser/web_contents/web_contents_view_child_frame.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" 8 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
9 #include "content/browser/web_contents/web_contents_impl.h" 9 #include "content/browser/web_contents/web_contents_impl.h"
10 #include "content/public/browser/web_contents_view_delegate.h" 10 #include "content/public/browser/web_contents_view_delegate.h"
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 RenderFrameHost* render_frame_host, 160 RenderFrameHost* render_frame_host,
161 const ContextMenuParams& params) { 161 const ContextMenuParams& params) {
162 NOTREACHED(); 162 NOTREACHED();
163 } 163 }
164 164
165 void WebContentsViewChildFrame::StartDragging( 165 void WebContentsViewChildFrame::StartDragging(
166 const DropData& drop_data, 166 const DropData& drop_data,
167 WebDragOperationsMask ops, 167 WebDragOperationsMask ops,
168 const gfx::ImageSkia& image, 168 const gfx::ImageSkia& image,
169 const gfx::Vector2d& image_offset, 169 const gfx::Vector2d& image_offset,
170 const DragEventSourceInfo& event_info) { 170 const DragEventSourceInfo& event_info,
171 RenderWidgetHostImpl* source_rwh) {
171 NOTREACHED(); 172 NOTREACHED();
172 } 173 }
173 174
174 } // namespace content 175 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698