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

Side by Side Diff: Source/core/dom/Clipboard.h

Issue 25494003: Move geometry classes from core/platform/graphics to platform/geometry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/ClientRectList.h ('k') | Source/core/dom/DocumentMarkerController.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) 2001 Peter Kelly (pmk@post.com) 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 10 matching lines...) Expand all
21 * 21 *
22 */ 22 */
23 23
24 #ifndef Clipboard_h 24 #ifndef Clipboard_h
25 #define Clipboard_h 25 #define Clipboard_h
26 26
27 #include "bindings/v8/ScriptWrappable.h" 27 #include "bindings/v8/ScriptWrappable.h"
28 #include "core/dom/ClipboardAccessPolicy.h" 28 #include "core/dom/ClipboardAccessPolicy.h"
29 #include "core/fetch/ResourcePtr.h" 29 #include "core/fetch/ResourcePtr.h"
30 #include "core/page/DragActions.h" 30 #include "core/page/DragActions.h"
31 #include "core/platform/graphics/IntPoint.h" 31 #include "platform/geometry/IntPoint.h"
32 #include "wtf/Forward.h" 32 #include "wtf/Forward.h"
33 #include "wtf/RefCounted.h" 33 #include "wtf/RefCounted.h"
34 #include "wtf/RefPtr.h" 34 #include "wtf/RefPtr.h"
35 #include "wtf/Vector.h" 35 #include "wtf/Vector.h"
36 36
37 namespace WebCore { 37 namespace WebCore {
38 38
39 class ChromiumDataObject; 39 class ChromiumDataObject;
40 class DataTransferItemList; 40 class DataTransferItemList;
41 class DragImage; 41 class DragImage;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 ResourcePtr<ImageResource> m_dragImage; 130 ResourcePtr<ImageResource> m_dragImage;
131 RefPtr<Node> m_dragImageElement; 131 RefPtr<Node> m_dragImageElement;
132 }; 132 };
133 133
134 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio n); 134 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio n);
135 String convertDragOperationToDropZoneOperation(DragOperation); 135 String convertDragOperationToDropZoneOperation(DragOperation);
136 136
137 } // namespace WebCore 137 } // namespace WebCore
138 138
139 #endif // Clipboard_h 139 #endif // Clipboard_h
OLDNEW
« no previous file with comments | « Source/core/dom/ClientRectList.h ('k') | Source/core/dom/DocumentMarkerController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698