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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 #include "core/fetch/ImageResource.h" | 47 #include "core/fetch/ImageResource.h" |
48 #include "core/fetch/ResourceFetcher.h" | 48 #include "core/fetch/ResourceFetcher.h" |
49 #include "core/frame/Frame.h" | 49 #include "core/frame/Frame.h" |
50 #include "core/frame/FrameView.h" | 50 #include "core/frame/FrameView.h" |
51 #include "core/html/HTMLAnchorElement.h" | 51 #include "core/html/HTMLAnchorElement.h" |
52 #include "core/html/HTMLFormElement.h" | 52 #include "core/html/HTMLFormElement.h" |
53 #include "core/html/HTMLInputElement.h" | 53 #include "core/html/HTMLInputElement.h" |
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/DragActions.h" | |
58 #include "core/page/DragClient.h" | 57 #include "core/page/DragClient.h" |
59 #include "core/page/DragData.h" | 58 #include "core/page/DragData.h" |
60 #include "core/page/DragSession.h" | 59 #include "core/page/DragSession.h" |
61 #include "core/page/DragState.h" | 60 #include "core/page/DragState.h" |
62 #include "core/page/EventHandler.h" | 61 #include "core/page/EventHandler.h" |
63 #include "core/page/Page.h" | 62 #include "core/page/Page.h" |
64 #include "core/page/Settings.h" | 63 #include "core/page/Settings.h" |
65 #include "core/platform/DragImage.h" | 64 #include "core/platform/DragImage.h" |
66 #include "core/platform/chromium/ChromiumDataObject.h" | 65 #include "core/platform/chromium/ChromiumDataObject.h" |
67 #include "core/platform/graphics/Image.h" | 66 #include "core/platform/graphics/Image.h" |
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 return false; | 960 return false; |
962 #endif | 961 #endif |
963 } | 962 } |
964 | 963 |
965 void DragController::cleanupAfterSystemDrag() | 964 void DragController::cleanupAfterSystemDrag() |
966 { | 965 { |
967 } | 966 } |
968 | 967 |
969 } // namespace WebCore | 968 } // namespace WebCore |
970 | 969 |
OLD | NEW |