| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 #include "core/html/HTMLPlugInElement.h" | 54 #include "core/html/HTMLPlugInElement.h" |
| 55 #include "core/loader/FrameLoadRequest.h" | 55 #include "core/loader/FrameLoadRequest.h" |
| 56 #include "core/loader/FrameLoader.h" | 56 #include "core/loader/FrameLoader.h" |
| 57 #include "core/page/DragClient.h" | 57 #include "core/page/DragClient.h" |
| 58 #include "core/page/DragData.h" | 58 #include "core/page/DragData.h" |
| 59 #include "core/page/DragSession.h" | 59 #include "core/page/DragSession.h" |
| 60 #include "core/page/DragState.h" | 60 #include "core/page/DragState.h" |
| 61 #include "core/page/EventHandler.h" | 61 #include "core/page/EventHandler.h" |
| 62 #include "core/page/Page.h" | 62 #include "core/page/Page.h" |
| 63 #include "core/frame/Settings.h" | 63 #include "core/frame/Settings.h" |
| 64 #include "core/platform/DragImage.h" | |
| 65 #include "core/platform/chromium/ChromiumDataObject.h" | 64 #include "core/platform/chromium/ChromiumDataObject.h" |
| 66 #include "core/rendering/HitTestRequest.h" | 65 #include "core/rendering/HitTestRequest.h" |
| 67 #include "core/rendering/HitTestResult.h" | 66 #include "core/rendering/HitTestResult.h" |
| 68 #include "core/rendering/RenderImage.h" | 67 #include "core/rendering/RenderImage.h" |
| 69 #include "core/rendering/RenderTheme.h" | 68 #include "core/rendering/RenderTheme.h" |
| 70 #include "core/rendering/RenderView.h" | 69 #include "core/rendering/RenderView.h" |
| 70 #include "platform/DragImage.h" |
| 71 #include "platform/geometry/FloatRect.h" | 71 #include "platform/geometry/FloatRect.h" |
| 72 #include "platform/graphics/Image.h" | 72 #include "platform/graphics/Image.h" |
| 73 #include "platform/graphics/ImageOrientation.h" | 73 #include "platform/graphics/ImageOrientation.h" |
| 74 #include "platform/network/ResourceRequest.h" | 74 #include "platform/network/ResourceRequest.h" |
| 75 #include "platform/weborigin/SecurityOrigin.h" | 75 #include "platform/weborigin/SecurityOrigin.h" |
| 76 #include "wtf/CurrentTime.h" | 76 #include "wtf/CurrentTime.h" |
| 77 #include "wtf/OwnPtr.h" | 77 #include "wtf/OwnPtr.h" |
| 78 #include "wtf/PassOwnPtr.h" | 78 #include "wtf/PassOwnPtr.h" |
| 79 #include "wtf/RefPtr.h" | 79 #include "wtf/RefPtr.h" |
| 80 | 80 |
| (...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 959 return false; | 959 return false; |
| 960 #endif | 960 #endif |
| 961 } | 961 } |
| 962 | 962 |
| 963 void DragController::cleanupAfterSystemDrag() | 963 void DragController::cleanupAfterSystemDrag() |
| 964 { | 964 { |
| 965 } | 965 } |
| 966 | 966 |
| 967 } // namespace WebCore | 967 } // namespace WebCore |
| 968 | 968 |
| OLD | NEW |