| 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 "MoveSelectionCommand.h" | 57 #include "MoveSelectionCommand.h" |
| 58 #include "Node.h" | 58 #include "Node.h" |
| 59 #include "Page.h" | 59 #include "Page.h" |
| 60 #include "PlatformKeyboardEvent.h" | 60 #include "PlatformKeyboardEvent.h" |
| 61 #include "PluginDocument.h" | 61 #include "PluginDocument.h" |
| 62 #include "PluginViewBase.h" | 62 #include "PluginViewBase.h" |
| 63 #include "RenderFileUploadControl.h" | 63 #include "RenderFileUploadControl.h" |
| 64 #include "RenderImage.h" | 64 #include "RenderImage.h" |
| 65 #include "RenderView.h" | 65 #include "RenderView.h" |
| 66 #include "ReplaceSelectionCommand.h" | 66 #include "ReplaceSelectionCommand.h" |
| 67 #include "ResourceRequest.h" | |
| 68 #include "SecurityOrigin.h" | 67 #include "SecurityOrigin.h" |
| 69 #include "Settings.h" | 68 #include "Settings.h" |
| 70 #include "ShadowRoot.h" | 69 #include "ShadowRoot.h" |
| 71 #include "StylePropertySet.h" | 70 #include "StylePropertySet.h" |
| 72 #include "Text.h" | 71 #include "Text.h" |
| 73 #include "TextEvent.h" | 72 #include "TextEvent.h" |
| 74 #include "core/platform/graphics/FloatRect.h" | 73 #include "core/platform/graphics/FloatRect.h" |
| 75 #include "core/platform/graphics/Image.h" | 74 #include "core/platform/graphics/Image.h" |
| 76 #include "core/platform/graphics/ImageOrientation.h" | 75 #include "core/platform/graphics/ImageOrientation.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) |
| 83 #include <windows.h> | 83 #include <windows.h> |
| 84 #endif | 84 #endif |
| 85 | 85 |
| 86 namespace WebCore { | 86 namespace WebCore { |
| (...skipping 874 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 |