| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Google Inc. | 3 * Copyright (C) 2008 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| 11 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
| 12 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
| 13 * | 13 * |
| 14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "DragController.h" | 28 #include "DragController.h" |
| 29 | 29 |
| 30 #include "CachedImage.h" | |
| 31 #include "CachedResourceLoader.h" | |
| 32 #include "Clipboard.h" | 30 #include "Clipboard.h" |
| 33 #include "ClipboardAccessPolicy.h" | 31 #include "ClipboardAccessPolicy.h" |
| 34 #include "Document.h" | 32 #include "Document.h" |
| 35 #include "DocumentFragment.h" | 33 #include "DocumentFragment.h" |
| 36 #include "DragActions.h" | 34 #include "DragActions.h" |
| 37 #include "DragClient.h" | 35 #include "DragClient.h" |
| 38 #include "DragSession.h" | 36 #include "DragSession.h" |
| 39 #include "DragState.h" | 37 #include "DragState.h" |
| 40 #include "Editor.h" | 38 #include "Editor.h" |
| 41 #include "EditorClient.h" | 39 #include "EditorClient.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 56 #include "PluginViewBase.h" | 54 #include "PluginViewBase.h" |
| 57 #include "ReplaceSelectionCommand.h" | 55 #include "ReplaceSelectionCommand.h" |
| 58 #include "SecurityOrigin.h" | 56 #include "SecurityOrigin.h" |
| 59 #include "Settings.h" | 57 #include "Settings.h" |
| 60 #include "ShadowRoot.h" | 58 #include "ShadowRoot.h" |
| 61 #include "StylePropertySet.h" | 59 #include "StylePropertySet.h" |
| 62 #include "Text.h" | 60 #include "Text.h" |
| 63 #include "TextEvent.h" | 61 #include "TextEvent.h" |
| 64 #include "core/loader/FrameLoadRequest.h" | 62 #include "core/loader/FrameLoadRequest.h" |
| 65 #include "core/loader/FrameLoader.h" | 63 #include "core/loader/FrameLoader.h" |
| 64 #include "core/loader/cache/CachedImage.h" |
| 65 #include "core/loader/cache/CachedResourceLoader.h" |
| 66 #include "core/platform/DragData.h" | 66 #include "core/platform/DragData.h" |
| 67 #include "core/platform/PlatformKeyboardEvent.h" | 67 #include "core/platform/PlatformKeyboardEvent.h" |
| 68 #include "core/platform/graphics/FloatRect.h" | 68 #include "core/platform/graphics/FloatRect.h" |
| 69 #include "core/platform/graphics/Image.h" | 69 #include "core/platform/graphics/Image.h" |
| 70 #include "core/platform/graphics/ImageOrientation.h" | 70 #include "core/platform/graphics/ImageOrientation.h" |
| 71 #include "core/platform/network/ResourceRequest.h" | 71 #include "core/platform/network/ResourceRequest.h" |
| 72 #include "core/rendering/HitTestRequest.h" | 72 #include "core/rendering/HitTestRequest.h" |
| 73 #include "core/rendering/HitTestResult.h" | 73 #include "core/rendering/HitTestResult.h" |
| 74 #include "core/rendering/RenderFileUploadControl.h" | 74 #include "core/rendering/RenderFileUploadControl.h" |
| 75 #include "core/rendering/RenderImage.h" | 75 #include "core/rendering/RenderImage.h" |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 961 #endif | 961 #endif |
| 962 return maxDragImageSize; | 962 return maxDragImageSize; |
| 963 } | 963 } |
| 964 | 964 |
| 965 void DragController::cleanupAfterSystemDrag() | 965 void DragController::cleanupAfterSystemDrag() |
| 966 { | 966 { |
| 967 } | 967 } |
| 968 | 968 |
| 969 } // namespace WebCore | 969 } // namespace WebCore |
| 970 | 970 |
| OLD | NEW |