| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "ChromiumDataObject.h" | 7 #include "ChromiumDataObject.h" |
| 8 #include "ClipboardChromium.h" | 8 #include "ClipboardChromium.h" |
| 9 #include "Frame.h" | 9 #include "Frame.h" |
| 10 #undef LOG | 10 #undef LOG |
| 11 | 11 |
| 12 #include "webkit/api/public/WebDragData.h" | 12 #include "webkit/api/public/WebDragData.h" |
| 13 #include "webkit/api/public/WebViewClient.h" |
| 13 #include "webkit/glue/dragclient_impl.h" | 14 #include "webkit/glue/dragclient_impl.h" |
| 14 #include "webkit/glue/glue_util.h" | 15 #include "webkit/glue/glue_util.h" |
| 15 #include "webkit/glue/webdropdata.h" | |
| 16 #include "webkit/glue/webview_impl.h" | 16 #include "webkit/glue/webview_impl.h" |
| 17 | 17 |
| 18 using WebKit::WebDragData; | 18 using WebKit::WebDragData; |
| 19 using WebKit::WebPoint; | 19 using WebKit::WebPoint; |
| 20 | 20 |
| 21 void DragClientImpl::willPerformDragDestinationAction( | 21 void DragClientImpl::willPerformDragDestinationAction( |
| 22 WebCore::DragDestinationAction, | 22 WebCore::DragDestinationAction, |
| 23 WebCore::DragData*) { | 23 WebCore::DragData*) { |
| 24 // FIXME | 24 // FIXME |
| 25 } | 25 } |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 WebCore::KURL&, | 74 WebCore::KURL&, |
| 75 const WebCore::String& label, | 75 const WebCore::String& label, |
| 76 WebCore::Frame*) { | 76 WebCore::Frame*) { |
| 77 // FIXME | 77 // FIXME |
| 78 return 0; | 78 return 0; |
| 79 } | 79 } |
| 80 | 80 |
| 81 void DragClientImpl::dragControllerDestroyed() { | 81 void DragClientImpl::dragControllerDestroyed() { |
| 82 // Our lifetime is bound to the WebViewImpl. | 82 // Our lifetime is bound to the WebViewImpl. |
| 83 } | 83 } |
| OLD | NEW |