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

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

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 bool dropEffectIsUninitialized() const { return m_dropEffect == "uninitializ ed"; } 69 bool dropEffectIsUninitialized() const { return m_dropEffect == "uninitializ ed"; }
70 String effectAllowed() const { return m_effectAllowed; } 70 String effectAllowed() const { return m_effectAllowed; }
71 void setEffectAllowed(const String&); 71 void setEffectAllowed(const String&);
72 72
73 void clearData(const String& type = String()); 73 void clearData(const String& type = String());
74 String getData(const String& type) const; 74 String getData(const String& type) const;
75 bool setData(const String& type, const String& data); 75 bool setData(const String& type, const String& data);
76 76
77 // extensions beyond IE's API 77 // extensions beyond IE's API
78 Vector<String> types() const; 78 Vector<String> types() const;
79 PassRefPtr<FileList> files() const; 79 PassRefPtrWillBeRawPtr<FileList> files() const;
80 80
81 IntPoint dragLocation() const { return m_dragLoc; } 81 IntPoint dragLocation() const { return m_dragLoc; }
82 void setDragImage(Element*, int x, int y, ExceptionState&); 82 void setDragImage(Element*, int x, int y, ExceptionState&);
83 ImageResource* dragImageResource() const { return m_dragImage.get(); } 83 ImageResource* dragImageResource() const { return m_dragImage.get(); }
84 void setDragImageResource(ImageResource*, const IntPoint&); 84 void setDragImageResource(ImageResource*, const IntPoint&);
85 Node* dragImageElement() const { return m_dragImageElement.get(); } 85 Node* dragImageElement() const { return m_dragImageElement.get(); }
86 void setDragImageElement(Node*, const IntPoint&); 86 void setDragImageElement(Node*, const IntPoint&);
87 87
88 PassOwnPtr<DragImage> createDragImage(IntPoint& dragLocation, Frame*) const; 88 PassOwnPtr<DragImage> createDragImage(IntPoint& dragLocation, Frame*) const;
89 void declareAndWriteDragImage(Element*, const KURL&, const String& title); 89 void declareAndWriteDragImage(Element*, const KURL&, const String& title);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 ResourcePtr<ImageResource> m_dragImage; 135 ResourcePtr<ImageResource> m_dragImage;
136 RefPtr<Node> m_dragImageElement; 136 RefPtr<Node> m_dragImageElement;
137 }; 137 };
138 138
139 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio n); 139 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio n);
140 String convertDragOperationToDropZoneOperation(DragOperation); 140 String convertDragOperationToDropZoneOperation(DragOperation);
141 141
142 } // namespace WebCore 142 } // namespace WebCore
143 143
144 #endif // Clipboard_h 144 #endif // Clipboard_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698