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 |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "DragController.h" | 28 #include "DragController.h" |
29 | 29 |
30 #include "CachedImage.h" | 30 #include "CachedImage.h" |
31 #include "CachedResourceLoader.h" | 31 #include "CachedResourceLoader.h" |
32 #include "Clipboard.h" | 32 #include "Clipboard.h" |
33 #include "ClipboardAccessPolicy.h" | 33 #include "ClipboardAccessPolicy.h" |
34 #include "Document.h" | 34 #include "Document.h" |
35 #include "DocumentFragment.h" | 35 #include "DocumentFragment.h" |
36 #include "DragActions.h" | 36 #include "DragActions.h" |
37 #include "DragClient.h" | 37 #include "DragClient.h" |
38 #include "DragData.h" | |
39 #include "DragSession.h" | 38 #include "DragSession.h" |
40 #include "DragState.h" | 39 #include "DragState.h" |
41 #include "Editor.h" | 40 #include "Editor.h" |
42 #include "EditorClient.h" | 41 #include "EditorClient.h" |
43 #include "Element.h" | 42 #include "Element.h" |
44 #include "EventHandler.h" | 43 #include "EventHandler.h" |
45 #include "ExceptionCodePlaceholder.h" | 44 #include "ExceptionCodePlaceholder.h" |
46 #include "Frame.h" | 45 #include "Frame.h" |
47 #include "FrameLoadRequest.h" | 46 #include "FrameLoadRequest.h" |
48 #include "FrameLoader.h" | 47 #include "FrameLoader.h" |
49 #include "FrameSelection.h" | 48 #include "FrameSelection.h" |
50 #include "FrameView.h" | 49 #include "FrameView.h" |
51 #include "HTMLAnchorElement.h" | 50 #include "HTMLAnchorElement.h" |
52 #include "HTMLInputElement.h" | 51 #include "HTMLInputElement.h" |
53 #include "HTMLNames.h" | 52 #include "HTMLNames.h" |
54 #include "HTMLPlugInElement.h" | 53 #include "HTMLPlugInElement.h" |
55 #include "HitTestRequest.h" | 54 #include "HitTestRequest.h" |
56 #include "HitTestResult.h" | 55 #include "HitTestResult.h" |
57 #include "MoveSelectionCommand.h" | 56 #include "MoveSelectionCommand.h" |
58 #include "Node.h" | 57 #include "Node.h" |
59 #include "Page.h" | 58 #include "Page.h" |
60 #include "PlatformKeyboardEvent.h" | |
61 #include "PluginDocument.h" | 59 #include "PluginDocument.h" |
62 #include "PluginViewBase.h" | 60 #include "PluginViewBase.h" |
63 #include "RenderFileUploadControl.h" | 61 #include "RenderFileUploadControl.h" |
64 #include "RenderImage.h" | 62 #include "RenderImage.h" |
65 #include "RenderView.h" | 63 #include "RenderView.h" |
66 #include "ReplaceSelectionCommand.h" | 64 #include "ReplaceSelectionCommand.h" |
67 #include "SecurityOrigin.h" | 65 #include "SecurityOrigin.h" |
68 #include "Settings.h" | 66 #include "Settings.h" |
69 #include "ShadowRoot.h" | 67 #include "ShadowRoot.h" |
70 #include "StylePropertySet.h" | 68 #include "StylePropertySet.h" |
71 #include "Text.h" | 69 #include "Text.h" |
72 #include "TextEvent.h" | 70 #include "TextEvent.h" |
| 71 #include "core/platform/DragData.h" |
| 72 #include "core/platform/PlatformKeyboardEvent.h" |
73 #include "core/platform/graphics/FloatRect.h" | 73 #include "core/platform/graphics/FloatRect.h" |
74 #include "core/platform/graphics/Image.h" | 74 #include "core/platform/graphics/Image.h" |
75 #include "core/platform/graphics/ImageOrientation.h" | 75 #include "core/platform/graphics/ImageOrientation.h" |
76 #include "core/platform/network/ResourceRequest.h" | 76 #include "core/platform/network/ResourceRequest.h" |
77 #include "htmlediting.h" | 77 #include "htmlediting.h" |
78 #include "markup.h" | 78 #include "markup.h" |
79 #include <wtf/CurrentTime.h> | 79 #include <wtf/CurrentTime.h> |
80 #include <wtf/RefPtr.h> | 80 #include <wtf/RefPtr.h> |
81 | 81 |
82 #if OS(WINDOWS) | 82 #if OS(WINDOWS) |
(...skipping 878 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 |