HomeSort by relevance Sort by last modified time
    Searched refs:ChromiumDataObjectItem (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ChromiumDataObjectItem.cpp 32 #include "core/platform/chromium/ChromiumDataObjectItem.h"
47 PassRefPtr<ChromiumDataObjectItem> ChromiumDataObjectItem::createFromString(const String& type, const String& data)
49 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(DataTransferItem::kindString, type));
54 PassRefPtr<ChromiumDataObjectItem> ChromiumDataObjectItem::createFromFile(PassRefPtr<File> file)
56 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(DataTransferItem::kindFile, file->type()));
61 PassRefPtr<ChromiumDataObjectItem> ChromiumDataObjectItem::createFromURL(const String& url, const String& title
    [all...]
ChromiumDataObjectItem.h 47 class ChromiumDataObjectItem : public RefCounted<ChromiumDataObjectItem> {
49 static PassRefPtr<ChromiumDataObjectItem> createFromString(const String& type, const String& data);
50 static PassRefPtr<ChromiumDataObjectItem> createFromFile(PassRefPtr<File>);
51 static PassRefPtr<ChromiumDataObjectItem> createFromURL(const String& url, const String& title);
52 static PassRefPtr<ChromiumDataObjectItem> createFromHTML(const String& html, const KURL& baseURL);
53 static PassRefPtr<ChromiumDataObjectItem> createFromSharedBuffer(const String& filename, PassRefPtr<SharedBuffer>);
54 static PassRefPtr<ChromiumDataObjectItem> createFromPasteboard(const String& type, uint64_t sequenceNumber);
74 ChromiumDataObjectItem(const String& kind, const String& type);
75 ChromiumDataObjectItem(const String& kind, const String& type, uint64_t sequenceNumber)
    [all...]
ChromiumDataObject.h 35 #include "core/platform/chromium/ChromiumDataObjectItem.h"
61 PassRefPtr<ChromiumDataObjectItem> item(unsigned long index);
96 PassRefPtr<ChromiumDataObjectItem> findStringItem(const String& type) const;
97 bool internalAddStringItem(PassRefPtr<ChromiumDataObjectItem>);
98 void internalAddFileItem(PassRefPtr<ChromiumDataObjectItem>);
100 Vector<RefPtr<ChromiumDataObjectItem> > m_itemList;
ClipboardChromium.h 41 class ChromiumDataObjectItem;
49 static PassRefPtr<DataTransferItemPolicyWrapper> create(PassRefPtr<ClipboardChromium>, PassRefPtr<ChromiumDataObjectItem>);
58 ChromiumDataObjectItem* dataObjectItem() { return m_item.get(); }
61 DataTransferItemPolicyWrapper(PassRefPtr<ClipboardChromium>, PassRefPtr<ChromiumDataObjectItem>);
64 RefPtr<ChromiumDataObjectItem> m_item;
ChromiumDataObject.cpp 55 dataObject->m_itemList.append(ChromiumDataObjectItem::createFromPasteboard(*it, sequenceNumber));
74 PassRefPtr<ChromiumDataObjectItem> ChromiumDataObject::item(unsigned long index)
95 if (!internalAddStringItem(ChromiumDataObjectItem::createFromString(type, data)))
104 m_itemList.append(ChromiumDataObjectItem::createFromFile(file));
164 RefPtr<ChromiumDataObjectItem> item = findStringItem(mimeTypeTextURIList);
175 internalAddStringItem(ChromiumDataObjectItem::createFromURL(url, title));
180 RefPtr<ChromiumDataObjectItem> item = findStringItem(mimeTypeTextHTML);
190 internalAddStringItem(ChromiumDataObjectItem::createFromHTML(html, baseURL));
212 internalAddFileItem(ChromiumDataObjectItem::createFromFile(File::createWithName(filename, displayName, File::AllContentTypes)));
217 internalAddFileItem(ChromiumDataObjectItem::createFromSharedBuffer(name, buffer))
    [all...]
ClipboardChromium.cpp 45 #include "core/platform/chromium/ChromiumDataObjectItem.h"
99 RefPtr<ChromiumDataObjectItem> item = m_dataObject->item(index);
146 PassRefPtr<ClipboardChromium> clipboard, PassRefPtr<ChromiumDataObjectItem> item)
186 PassRefPtr<ClipboardChromium> clipboard, PassRefPtr<ChromiumDataObjectItem> item)
  /external/chromium_org/third_party/WebKit/Source/web/
WebDragData.cpp 74 ChromiumDataObjectItem* originalItem = m_private->item(i).get();
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_platform.target.darwin-arm.mk 116 third_party/WebKit/Source/core/platform/chromium/ChromiumDataObjectItem.cpp \
    [all...]
webcore_platform.target.darwin-mips.mk 116 third_party/WebKit/Source/core/platform/chromium/ChromiumDataObjectItem.cpp \
    [all...]
webcore_platform.target.darwin-x86.mk 116 third_party/WebKit/Source/core/platform/chromium/ChromiumDataObjectItem.cpp \
    [all...]
webcore_platform.target.linux-arm.mk 116 third_party/WebKit/Source/core/platform/chromium/ChromiumDataObjectItem.cpp \
    [all...]
webcore_platform.target.linux-mips.mk 116 third_party/WebKit/Source/core/platform/chromium/ChromiumDataObjectItem.cpp \
    [all...]
webcore_platform.target.linux-x86.mk 116 third_party/WebKit/Source/core/platform/chromium/ChromiumDataObjectItem.cpp \
    [all...]

Completed in 213 milliseconds