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

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

Issue 169323002: Oilpan: Move core/clipboard/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
« no previous file with comments | « Source/core/clipboard/DataObject.cpp ('k') | Source/core/clipboard/DataObjectItem.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 14 matching lines...) Expand all
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef DataObjectItem_h 31 #ifndef DataObjectItem_h
32 #define DataObjectItem_h 32 #define DataObjectItem_h
33 33
34 #include "core/fileapi/File.h" 34 #include "core/fileapi/File.h"
35 #include "heap/Handle.h"
35 #include "platform/SharedBuffer.h" 36 #include "platform/SharedBuffer.h"
36 #include "platform/weborigin/KURL.h" 37 #include "platform/weborigin/KURL.h"
37 #include "wtf/RefCounted.h" 38 #include "wtf/RefCounted.h"
38 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
39 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
40 41
41 namespace WebCore { 42 namespace WebCore {
42 43
43 class Blob; 44 class Blob;
44 45
45 class DataObjectItem : public RefCounted<DataObjectItem> { 46 class DataObjectItem : public RefCountedWillBeGarbageCollectedFinalized<DataObje ctItem> {
47 DECLARE_GC_INFO;
46 public: 48 public:
47 enum Kind { 49 enum Kind {
48 StringKind, 50 StringKind,
49 FileKind 51 FileKind
50 }; 52 };
51 53
52 static PassRefPtr<DataObjectItem> createFromString(const String& type, const String& data); 54 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromString(const String& type, const String& data);
53 static PassRefPtr<DataObjectItem> createFromFile(PassRefPtr<File>); 55 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromFile(PassRefPtr<File >);
54 static PassRefPtr<DataObjectItem> createFromURL(const String& url, const Str ing& title); 56 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromURL(const String& ur l, const String& title);
55 static PassRefPtr<DataObjectItem> createFromHTML(const String& html, const K URL& baseURL); 57 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromHTML(const String& h tml, const KURL& baseURL);
56 static PassRefPtr<DataObjectItem> createFromSharedBuffer(const String& filen ame, PassRefPtr<SharedBuffer>); 58 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromSharedBuffer(const S tring& filename, PassRefPtr<SharedBuffer>);
57 static PassRefPtr<DataObjectItem> createFromPasteboard(const String& type, u int64_t sequenceNumber); 59 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromPasteboard(const Str ing& type, uint64_t sequenceNumber);
58 60
59 Kind kind() const { return m_kind; } 61 Kind kind() const { return m_kind; }
60 String type() const { return m_type; } 62 String type() const { return m_type; }
61 String getAsString() const; 63 String getAsString() const;
62 PassRefPtr<Blob> getAsFile() const; 64 PassRefPtr<Blob> getAsFile() const;
63 65
64 // Used to support legacy DataTransfer APIs and renderer->browser serializat ion. 66 // Used to support legacy DataTransfer APIs and renderer->browser serializat ion.
65 PassRefPtr<SharedBuffer> sharedBuffer() const { return m_sharedBuffer; } 67 PassRefPtr<SharedBuffer> sharedBuffer() const { return m_sharedBuffer; }
66 String title() const { return m_title; } 68 String title() const { return m_title; }
67 KURL baseURL() const { return m_baseURL; } 69 KURL baseURL() const { return m_baseURL; }
68 bool isFilename() const; 70 bool isFilename() const;
69 71
72 void trace(Visitor*) { }
73
70 private: 74 private:
71 enum DataSource { 75 enum DataSource {
72 PasteboardSource, 76 PasteboardSource,
73 InternalSource, 77 InternalSource,
74 }; 78 };
75 79
76 DataObjectItem(Kind, const String& type); 80 DataObjectItem(Kind, const String& type);
77 DataObjectItem(Kind, const String& type, uint64_t sequenceNumber); 81 DataObjectItem(Kind, const String& type, uint64_t sequenceNumber);
78 82
79 DataSource m_source; 83 DataSource m_source;
80 Kind m_kind; 84 Kind m_kind;
81 String m_type; 85 String m_type;
82 86
83 String m_data; 87 String m_data;
84 RefPtr<File> m_file; 88 RefPtr<File> m_file;
85 RefPtr<SharedBuffer> m_sharedBuffer; 89 RefPtr<SharedBuffer> m_sharedBuffer;
86 // Optional metadata. Currently used for URL, HTML, and dragging files in. 90 // Optional metadata. Currently used for URL, HTML, and dragging files in.
87 String m_title; 91 String m_title;
88 KURL m_baseURL; 92 KURL m_baseURL;
89 93
90 uint64_t m_sequenceNumber; // Only valid when m_source == PasteboardSource 94 uint64_t m_sequenceNumber; // Only valid when m_source == PasteboardSource
91 }; 95 };
92 96
93 } // namespace WebCore 97 } // namespace WebCore
94 98
95 #endif // DataObjectItem_h 99 #endif // DataObjectItem_h
OLDNEW
« no previous file with comments | « Source/core/clipboard/DataObject.cpp ('k') | Source/core/clipboard/DataObjectItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698