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

Side by Side Diff: third_party/WebKit/Source/core/clipboard/DataTransfer.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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
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 14 matching lines...) Expand all
25 #define DataTransfer_h 25 #define DataTransfer_h
26 26
27 #include "bindings/core/v8/ScriptWrappable.h" 27 #include "bindings/core/v8/ScriptWrappable.h"
28 #include "core/CoreExport.h" 28 #include "core/CoreExport.h"
29 #include "core/clipboard/DataTransferAccessPolicy.h" 29 #include "core/clipboard/DataTransferAccessPolicy.h"
30 #include "core/fetch/ImageResource.h" 30 #include "core/fetch/ImageResource.h"
31 #include "core/page/DragActions.h" 31 #include "core/page/DragActions.h"
32 #include "platform/geometry/IntPoint.h" 32 #include "platform/geometry/IntPoint.h"
33 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
34 #include "wtf/Forward.h" 34 #include "wtf/Forward.h"
35 #include "wtf/RefCounted.h"
36 #include "wtf/RefPtr.h"
37 #include "wtf/Vector.h"
38 35
39 namespace blink { 36 namespace blink {
40 37
41 class DataObject; 38 class DataObject;
42 class DataTransferItemList; 39 class DataTransferItemList;
43 class DragImage; 40 class DragImage;
44 class Element; 41 class Element;
45 class FileList; 42 class FileList;
46 class FrameSelection; 43 class FrameSelection;
47 class LocalFrame; 44 class LocalFrame;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 Member<ImageResource> m_dragImage; 130 Member<ImageResource> m_dragImage;
134 Member<Node> m_dragImageElement; 131 Member<Node> m_dragImageElement;
135 }; 132 };
136 133
137 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio n); 134 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio n);
138 String convertDragOperationToDropZoneOperation(DragOperation); 135 String convertDragOperationToDropZoneOperation(DragOperation);
139 136
140 } // namespace blink 137 } // namespace blink
141 138
142 #endif // DataTransfer_h 139 #endif // DataTransfer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698