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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #include "core/page/DragSession.h" | 57 #include "core/page/DragSession.h" |
58 #include "core/page/DragState.h" | 58 #include "core/page/DragState.h" |
59 #include "core/page/EventHandler.h" | 59 #include "core/page/EventHandler.h" |
60 #include "core/page/Frame.h" | 60 #include "core/page/Frame.h" |
61 #include "core/page/FrameView.h" | 61 #include "core/page/FrameView.h" |
62 #include "core/page/Page.h" | 62 #include "core/page/Page.h" |
63 #include "core/page/Settings.h" | 63 #include "core/page/Settings.h" |
64 #include "core/platform/DragData.h" | 64 #include "core/platform/DragData.h" |
65 #include "core/platform/DragImage.h" | 65 #include "core/platform/DragImage.h" |
66 #include "core/platform/chromium/ChromiumDataObject.h" | 66 #include "core/platform/chromium/ChromiumDataObject.h" |
67 #include "core/platform/graphics/FloatRect.h" | |
68 #include "core/platform/graphics/Image.h" | 67 #include "core/platform/graphics/Image.h" |
69 #include "core/platform/graphics/ImageOrientation.h" | 68 #include "core/platform/graphics/ImageOrientation.h" |
70 #include "core/platform/network/ResourceRequest.h" | 69 #include "core/platform/network/ResourceRequest.h" |
71 #include "core/rendering/HitTestRequest.h" | 70 #include "core/rendering/HitTestRequest.h" |
72 #include "core/rendering/HitTestResult.h" | 71 #include "core/rendering/HitTestResult.h" |
73 #include "core/rendering/RenderImage.h" | 72 #include "core/rendering/RenderImage.h" |
74 #include "core/rendering/RenderTheme.h" | 73 #include "core/rendering/RenderTheme.h" |
75 #include "core/rendering/RenderView.h" | 74 #include "core/rendering/RenderView.h" |
| 75 #include "platform/geometry/FloatRect.h" |
76 #include "weborigin/SecurityOrigin.h" | 76 #include "weborigin/SecurityOrigin.h" |
77 #include "wtf/CurrentTime.h" | 77 #include "wtf/CurrentTime.h" |
78 #include "wtf/OwnPtr.h" | 78 #include "wtf/OwnPtr.h" |
79 #include "wtf/PassOwnPtr.h" | 79 #include "wtf/PassOwnPtr.h" |
80 #include "wtf/RefPtr.h" | 80 #include "wtf/RefPtr.h" |
81 | 81 |
82 #if OS(WIN) | 82 #if OS(WIN) |
83 #include <windows.h> | 83 #include <windows.h> |
84 #endif | 84 #endif |
85 | 85 |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 return false; | 928 return false; |
929 #endif | 929 #endif |
930 } | 930 } |
931 | 931 |
932 void DragController::cleanupAfterSystemDrag() | 932 void DragController::cleanupAfterSystemDrag() |
933 { | 933 { |
934 } | 934 } |
935 | 935 |
936 } // namespace WebCore | 936 } // namespace WebCore |
937 | 937 |
OLD | NEW |