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

  /external/webkit/Source/WebCore/platform/chromium/
PasteboardPrivate.h 36 class PasteboardPrivate {
ReadableDataObject.cpp 36 #include "PasteboardPrivate.h"
41 static PasteboardPrivate::ClipboardBuffer clipboardBuffer(Clipboard::ClipboardType clipboardType)
43 return clipboardType == Clipboard::DragAndDrop ? PasteboardPrivate::DragBuffer : PasteboardPrivate::StandardBuffer;
79 PasteboardPrivate::ClipboardBuffer buffer =
81 PasteboardPrivate::SelectionBuffer :
82 PasteboardPrivate::StandardBuffer;
85 PasteboardPrivate::ClipboardBuffer buffer =
87 PasteboardPrivate::SelectionBuffer :
88 PasteboardPrivate::StandardBuffer
    [all...]
PasteboardChromium.cpp 158 return PlatformBridge::clipboardIsFormatAvailable(PasteboardPrivate::WebSmartPasteFormat, m_selectionMode ? PasteboardPrivate::SelectionBuffer : PasteboardPrivate::StandardBuffer);
163 return PlatformBridge::clipboardReadPlainText(m_selectionMode ? PasteboardPrivate::SelectionBuffer : PasteboardPrivate::StandardBuffer);
169 PasteboardPrivate::ClipboardBuffer buffer = m_selectionMode ? PasteboardPrivate::SelectionBuffer : PasteboardPrivate::StandardBuffer;
171 if (PlatformBridge::clipboardIsFormatAvailable(PasteboardPrivate::HTMLFormat, buffer)) {
ChromiumDataObject.cpp 106 return PlatformBridge::clipboardReadAvailableTypes(PasteboardPrivate::StandardBuffer,
133 PasteboardPrivate::ClipboardBuffer buffer =
135 PasteboardPrivate::SelectionBuffer :
136 PasteboardPrivate::StandardBuffer;
157 PasteboardPrivate::ClipboardBuffer buffer =
159 PasteboardPrivate::SelectionBuffer :
160 PasteboardPrivate::StandardBuffer;
234 PlatformBridge::clipboardReadAvailableTypes(PasteboardPrivate::StandardBuffer,
ChromiumDataObjectLegacy.cpp 131 PasteboardPrivate::ClipboardBuffer buffer =
133 PasteboardPrivate::SelectionBuffer :
134 PasteboardPrivate::StandardBuffer;
155 PasteboardPrivate::ClipboardBuffer buffer =
157 PasteboardPrivate::SelectionBuffer :
158 PasteboardPrivate::StandardBuffer;
DataTransferItemChromium.cpp 97 callback->scheduleCallback(m_context, PlatformBridge::clipboardReadPlainText(PasteboardPrivate::StandardBuffer));
103 PlatformBridge::clipboardReadHTML(PasteboardPrivate::StandardBuffer, &html, &ignoredSourceURL);
126 RefPtr<SharedBuffer> data = PlatformBridge::clipboardReadImage(PasteboardPrivate::StandardBuffer);
PlatformBridge.h 42 #include "PasteboardPrivate.h"
97 static bool clipboardIsFormatAvailable(PasteboardPrivate::ClipboardFormat, PasteboardPrivate::ClipboardBuffer);
99 static String clipboardReadPlainText(PasteboardPrivate::ClipboardBuffer);
100 static void clipboardReadHTML(PasteboardPrivate::ClipboardBuffer, String*, KURL*);
101 static PassRefPtr<SharedBuffer> clipboardReadImage(PasteboardPrivate::ClipboardBuffer);
113 static HashSet<String> clipboardReadAvailableTypes(PasteboardPrivate::ClipboardBuffer, bool* containsFilenames);
114 static bool clipboardReadData(PasteboardPrivate::ClipboardBuffer, const String& type, String& data, String& metadata);
115 static Vector<String> clipboardReadFilenames(PasteboardPrivate::ClipboardBuffer);
  /external/webkit/Source/WebKit/chromium/src/
AssertMatchingEnums.cpp 53 #include "PasteboardPrivate.h"
222 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatPlainText, PasteboardPrivate::PlainTextFormat);
223 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatHTML, PasteboardPrivate::HTMLFormat);
224 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatBookmark, PasteboardPrivate::BookmarkFormat);
225 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatSmartPaste, PasteboardPrivate::WebSmartPasteFormat);
227 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::BufferStandard, PasteboardPrivate::StandardBuffer);
228 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::BufferSelection, PasteboardPrivate::SelectionBuffer);
229 COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::BufferDrag, PasteboardPrivate::DragBuffer);
PlatformBridge.cpp 152 PasteboardPrivate::ClipboardFormat format,
153 PasteboardPrivate::ClipboardBuffer buffer)
161 PasteboardPrivate::ClipboardBuffer buffer)
168 PasteboardPrivate::ClipboardBuffer buffer,
178 PasteboardPrivate::ClipboardBuffer buffer)
222 PasteboardPrivate::ClipboardBuffer buffer, bool* containsFilenames)
232 bool PlatformBridge::clipboardReadData(PasteboardPrivate::ClipboardBuffer buffer,
246 Vector<String> PlatformBridge::clipboardReadFilenames(PasteboardPrivate::ClipboardBuffer buffer)
    [all...]
  /external/webkit/Source/WebCore/platform/
Pasteboard.h 63 #include "PasteboardPrivate.h"
140 PasteboardPrivate p;

Completed in 529 milliseconds