| 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 "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 | 8 |
| 9 MSVC_PUSH_WARNING_LEVEL(0); | 9 MSVC_PUSH_WARNING_LEVEL(0); |
| 10 #include "ClipboardChromium.h" | 10 #include "ClipboardChromium.h" |
| 11 #include "DragData.h" | 11 #include "DragData.h" |
| 12 #include "Frame.h" | 12 #include "Frame.h" |
| 13 #include "HitTestResult.h" | 13 #include "HitTestResult.h" |
| 14 #include "Image.h" | 14 #include "Image.h" |
| 15 #include "KURL.h" | 15 #include "KURL.h" |
| 16 MSVC_POP_WARNING(); | 16 MSVC_POP_WARNING(); |
| 17 #undef LOG | 17 #undef LOG |
| 18 | 18 |
| 19 #include "webkit/glue/dragclient_impl.h" | 19 #include "webkit/glue/dragclient_impl.h" |
| 20 | 20 |
| 21 #include "base/logging.h" | 21 #include "base/logging.h" |
| 22 #include "base/string_util.h" | 22 #include "base/string_util.h" |
| 23 #include "webkit/glue/clipboard_conversion.h" | 23 #include "webkit/glue/clipboard_conversion.h" |
| 24 #include "webkit/glue/context_node_types.h" | 24 #include "webkit/glue/context_menu.h" |
| 25 #include "webkit/glue/glue_util.h" | 25 #include "webkit/glue/glue_util.h" |
| 26 #include "webkit/glue/webdropdata.h" | 26 #include "webkit/glue/webdropdata.h" |
| 27 #include "webkit/glue/webview_delegate.h" | 27 #include "webkit/glue/webview_delegate.h" |
| 28 #include "webkit/glue/webview_impl.h" | 28 #include "webkit/glue/webview_impl.h" |
| 29 | 29 |
| 30 void DragClientImpl::willPerformDragDestinationAction( | 30 void DragClientImpl::willPerformDragDestinationAction( |
| 31 WebCore::DragDestinationAction, | 31 WebCore::DragDestinationAction, |
| 32 WebCore::DragData*) { | 32 WebCore::DragData*) { |
| 33 // FIXME | 33 // FIXME |
| 34 } | 34 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 WebCore::KURL&, | 73 WebCore::KURL&, |
| 74 const WebCore::String& label, | 74 const WebCore::String& label, |
| 75 WebCore::Frame*) { | 75 WebCore::Frame*) { |
| 76 // FIXME | 76 // FIXME |
| 77 return 0; | 77 return 0; |
| 78 } | 78 } |
| 79 | 79 |
| 80 void DragClientImpl::dragControllerDestroyed() { | 80 void DragClientImpl::dragControllerDestroyed() { |
| 81 delete this; | 81 delete this; |
| 82 } | 82 } |
| OLD | NEW |