Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: Source/core/page/DragController.cpp

Issue 122353002: Move DragImage from core/platform/ to platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/platform/DragImage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/DragClient.h" 57 #include "core/page/DragClient.h"
58 #include "core/page/DragData.h" 58 #include "core/page/DragData.h"
59 #include "core/page/DragSession.h" 59 #include "core/page/DragSession.h"
60 #include "core/page/DragState.h" 60 #include "core/page/DragState.h"
61 #include "core/page/EventHandler.h" 61 #include "core/page/EventHandler.h"
62 #include "core/page/Page.h" 62 #include "core/page/Page.h"
63 #include "core/frame/Settings.h" 63 #include "core/frame/Settings.h"
64 #include "core/platform/DragImage.h"
65 #include "core/platform/chromium/ChromiumDataObject.h" 64 #include "core/platform/chromium/ChromiumDataObject.h"
66 #include "core/rendering/HitTestRequest.h" 65 #include "core/rendering/HitTestRequest.h"
67 #include "core/rendering/HitTestResult.h" 66 #include "core/rendering/HitTestResult.h"
68 #include "core/rendering/RenderImage.h" 67 #include "core/rendering/RenderImage.h"
69 #include "core/rendering/RenderTheme.h" 68 #include "core/rendering/RenderTheme.h"
70 #include "core/rendering/RenderView.h" 69 #include "core/rendering/RenderView.h"
70 #include "platform/DragImage.h"
71 #include "platform/geometry/FloatRect.h" 71 #include "platform/geometry/FloatRect.h"
72 #include "platform/graphics/Image.h" 72 #include "platform/graphics/Image.h"
73 #include "platform/graphics/ImageOrientation.h" 73 #include "platform/graphics/ImageOrientation.h"
74 #include "platform/network/ResourceRequest.h" 74 #include "platform/network/ResourceRequest.h"
75 #include "platform/weborigin/SecurityOrigin.h" 75 #include "platform/weborigin/SecurityOrigin.h"
76 #include "wtf/CurrentTime.h" 76 #include "wtf/CurrentTime.h"
77 #include "wtf/OwnPtr.h" 77 #include "wtf/OwnPtr.h"
78 #include "wtf/PassOwnPtr.h" 78 #include "wtf/PassOwnPtr.h"
79 #include "wtf/RefPtr.h" 79 #include "wtf/RefPtr.h"
80 80
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 return false; 959 return false;
960 #endif 960 #endif
961 } 961 }
962 962
963 void DragController::cleanupAfterSystemDrag() 963 void DragController::cleanupAfterSystemDrag()
964 { 964 {
965 } 965 }
966 966
967 } // namespace WebCore 967 } // namespace WebCore
968 968
OLDNEW
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/platform/DragImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698