| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "core/platform/chromium/ChromiumDataObject.h" | 66 #include "core/platform/chromium/ChromiumDataObject.h" |
| 67 #include "core/platform/graphics/Image.h" | 67 #include "core/platform/graphics/Image.h" |
| 68 #include "core/rendering/HitTestRequest.h" | 68 #include "core/rendering/HitTestRequest.h" |
| 69 #include "core/rendering/HitTestResult.h" | 69 #include "core/rendering/HitTestResult.h" |
| 70 #include "core/rendering/RenderImage.h" | 70 #include "core/rendering/RenderImage.h" |
| 71 #include "core/rendering/RenderTheme.h" | 71 #include "core/rendering/RenderTheme.h" |
| 72 #include "core/rendering/RenderView.h" | 72 #include "core/rendering/RenderView.h" |
| 73 #include "platform/geometry/FloatRect.h" | 73 #include "platform/geometry/FloatRect.h" |
| 74 #include "platform/graphics/ImageOrientation.h" | 74 #include "platform/graphics/ImageOrientation.h" |
| 75 #include "platform/network/ResourceRequest.h" | 75 #include "platform/network/ResourceRequest.h" |
| 76 #include "weborigin/SecurityOrigin.h" | 76 #include "platform/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 |
| 86 namespace WebCore { | 86 namespace WebCore { |
| (...skipping 841 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 |