| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #include "core/html/HTMLInputElement.h" | 50 #include "core/html/HTMLInputElement.h" |
| 51 #include "core/html/HTMLPlugInElement.h" | 51 #include "core/html/HTMLPlugInElement.h" |
| 52 #include "core/loader/FrameLoadRequest.h" | 52 #include "core/loader/FrameLoadRequest.h" |
| 53 #include "core/loader/FrameLoader.h" | 53 #include "core/loader/FrameLoader.h" |
| 54 #include "core/loader/cache/CachedImage.h" | 54 #include "core/loader/cache/CachedImage.h" |
| 55 #include "core/loader/cache/CachedResourceLoader.h" | 55 #include "core/loader/cache/CachedResourceLoader.h" |
| 56 #include "core/page/DragActions.h" | 56 #include "core/page/DragActions.h" |
| 57 #include "core/page/DragClient.h" | 57 #include "core/page/DragClient.h" |
| 58 #include "core/page/DragSession.h" | 58 #include "core/page/DragSession.h" |
| 59 #include "core/page/DragState.h" | 59 #include "core/page/DragState.h" |
| 60 #include "core/page/EditorClient.h" | |
| 61 #include "core/page/EventHandler.h" | 60 #include "core/page/EventHandler.h" |
| 62 #include "core/page/Frame.h" | 61 #include "core/page/Frame.h" |
| 63 #include "core/page/FrameView.h" | 62 #include "core/page/FrameView.h" |
| 64 #include "core/page/Page.h" | 63 #include "core/page/Page.h" |
| 65 #include "core/page/Settings.h" | 64 #include "core/page/Settings.h" |
| 66 #include "core/platform/DragData.h" | 65 #include "core/platform/DragData.h" |
| 67 #include "core/platform/PlatformKeyboardEvent.h" | |
| 68 #include "core/platform/graphics/FloatRect.h" | 66 #include "core/platform/graphics/FloatRect.h" |
| 69 #include "core/platform/graphics/Image.h" | 67 #include "core/platform/graphics/Image.h" |
| 70 #include "core/platform/graphics/ImageOrientation.h" | 68 #include "core/platform/graphics/ImageOrientation.h" |
| 71 #include "core/platform/network/ResourceRequest.h" | 69 #include "core/platform/network/ResourceRequest.h" |
| 72 #include "core/rendering/HitTestRequest.h" | 70 #include "core/rendering/HitTestRequest.h" |
| 73 #include "core/rendering/HitTestResult.h" | 71 #include "core/rendering/HitTestResult.h" |
| 74 #include "core/rendering/RenderFileUploadControl.h" | |
| 75 #include "core/rendering/RenderImage.h" | 72 #include "core/rendering/RenderImage.h" |
| 76 #include "core/rendering/RenderView.h" | 73 #include "core/rendering/RenderView.h" |
| 77 #include "weborigin/SecurityOrigin.h" | 74 #include "weborigin/SecurityOrigin.h" |
| 78 | 75 |
| 79 #if OS(WINDOWS) | 76 #if OS(WINDOWS) |
| 80 #include <windows.h> | 77 #include <windows.h> |
| 81 #endif | 78 #endif |
| 82 | 79 |
| 83 namespace WebCore { | 80 namespace WebCore { |
| 84 | 81 |
| (...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 920 #endif | 917 #endif |
| 921 return maxDragImageSize; | 918 return maxDragImageSize; |
| 922 } | 919 } |
| 923 | 920 |
| 924 void DragController::cleanupAfterSystemDrag() | 921 void DragController::cleanupAfterSystemDrag() |
| 925 { | 922 { |
| 926 } | 923 } |
| 927 | 924 |
| 928 } // namespace WebCore | 925 } // namespace WebCore |
| 929 | 926 |
| OLD | NEW |