Home | History | Annotate | Download | only in chromium

Lines Matching defs:Pasteboard

32 #include "core/platform/Pasteboard.h"
57 Pasteboard* Pasteboard::generalPasteboard()
59 static Pasteboard* pasteboard = new Pasteboard;
60 return pasteboard;
63 Pasteboard::Pasteboard()
68 void Pasteboard::clear()
74 bool Pasteboard::isSelectionMode() const
79 void Pasteboard::setSelectionMode(bool selectionMode)
84 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame, ShouldSerializeSelectedTextForClipboard shouldSerializeSelectedTextForClipboard)
97 void Pasteboard::writePlainText(const String& text, SmartReplaceOption)
109 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
123 void Pasteboard::writeImage(Node* node, const KURL&, const String& title)
157 void Pasteboard::writeClipboard(Clipboard* clipboard)
163 bool Pasteboard::canSmartReplace()
168 String Pasteboard::plainText(Frame* frame)
173 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)