| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_mus.h" | 5 #include "content/browser/web_contents/web_contents_view_mus.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_mus.h" | 8 #include "content/browser/renderer_host/render_widget_host_view_mus.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/render_widget_host_view.h" | 10 #include "content/public/browser/render_widget_host_view.h" |
| 11 #include "third_party/WebKit/public/web/WebDragOperation.h" | 11 #include "third_party/WebKit/public/web/WebDragOperation.h" |
| 12 | 12 |
| 13 using blink::WebDragOperation; | 13 using blink::WebDragOperation; |
| 14 using blink::WebDragOperationsMask; | 14 using blink::WebDragOperationsMask; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 WebContentsViewMus::WebContentsViewMus( | 18 WebContentsViewMus::WebContentsViewMus( |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 void WebContentsViewMus::StartDragging(const DropData& drop_data, | 153 void WebContentsViewMus::StartDragging(const DropData& drop_data, |
| 154 WebDragOperationsMask ops, | 154 WebDragOperationsMask ops, |
| 155 const gfx::ImageSkia& image, | 155 const gfx::ImageSkia& image, |
| 156 const gfx::Vector2d& image_offset, | 156 const gfx::Vector2d& image_offset, |
| 157 const DragEventSourceInfo& event_info) { | 157 const DragEventSourceInfo& event_info) { |
| 158 // TODO(fsamuel): Implement drag and drop. | 158 // TODO(fsamuel): Implement drag and drop. |
| 159 } | 159 } |
| 160 | 160 |
| 161 } // namespace content | 161 } // namespace content |
| OLD | NEW |