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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/core/page/EventHandler.cpp » ('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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/page/Settings.h" 63 #include "core/page/Settings.h"
64 #include "core/platform/DragImage.h" 64 #include "core/platform/DragImage.h"
65 #include "core/platform/chromium/ChromiumDataObject.h" 65 #include "core/platform/chromium/ChromiumDataObject.h"
66 #include "core/platform/graphics/Image.h"
67 #include "core/rendering/HitTestRequest.h" 66 #include "core/rendering/HitTestRequest.h"
68 #include "core/rendering/HitTestResult.h" 67 #include "core/rendering/HitTestResult.h"
69 #include "core/rendering/RenderImage.h" 68 #include "core/rendering/RenderImage.h"
70 #include "core/rendering/RenderTheme.h" 69 #include "core/rendering/RenderTheme.h"
71 #include "core/rendering/RenderView.h" 70 #include "core/rendering/RenderView.h"
72 #include "platform/geometry/FloatRect.h" 71 #include "platform/geometry/FloatRect.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
81 #if OS(WIN) 81 #if OS(WIN)
82 #include <windows.h> 82 #include <windows.h>
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 return false; 960 return false;
961 #endif 961 #endif
962 } 962 }
963 963
964 void DragController::cleanupAfterSystemDrag() 964 void DragController::cleanupAfterSystemDrag()
965 { 965 {
966 } 966 }
967 967
968 } // namespace WebCore 968 } // namespace WebCore
969 969
OLDNEW
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698