| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |