Searched defs:DataObjectItem (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataObjectItem.h46 class DataObjectItem : public RefCountedWillBeGarbageCollectedFinalized<DataObjectItem> { class in namespace:blink
53 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromString(const String& type, const String& data);
54 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromFile(PassRefPtrWillBeRawPtr<File>);
55 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromURL(const String& url, const String& title);
56 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromHTML(const String& html, const KURL& baseURL);
57 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromSharedBuffer(const String& filename, PassRefPtr<SharedBuffer>);
58 static PassRefPtrWillBeRawPtr<DataObjectItem> createFromPasteboard(const String& type, uint64_t sequenceNumber);
79 DataObjectItem(Kind, const String& type);
80 DataObjectItem(Kin
[all...]
H A DDataObjectItem.cpp32 #include "core/clipboard/DataObjectItem.h"
42 PassRefPtrWillBeRawPtr<DataObjectItem> DataObjectItem::createFromString(const String& type, const String& data)
44 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, type));
49 PassRefPtrWillBeRawPtr<DataObjectItem> DataObjectItem::createFromFile(PassRefPtrWillBeRawPtr<File> file)
51 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, file->type()));
56 PassRefPtrWillBeRawPtr<DataObjectItem> DataObjectIte
87 DataObjectItem::DataObjectItem(Kind kind, const String& type) function in class:blink::DataObjectItem
95 DataObjectItem::DataObjectItem(Kind kind, const String& type, uint64_t sequenceNumber) function in class:blink::DataObjectItem
[all...]

Completed in 97 milliseconds