Home | History | Annotate | Download | only in chromium

Lines Matching defs:pasteboard

32 #include "Pasteboard.h"
56 Pasteboard* Pasteboard::generalPasteboard()
58 static Pasteboard* pasteboard = new Pasteboard;
59 return pasteboard;
62 Pasteboard::Pasteboard()
67 void Pasteboard::clear()
73 bool Pasteboard::isSelectionMode() const
78 void Pasteboard::setSelectionMode(bool selectionMode)
83 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
97 void Pasteboard::writePlainText(const String& text)
108 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
122 void Pasteboard::writeImage(Node* node, const KURL&, const String& title)
156 bool Pasteboard::canSmartReplace()
161 String Pasteboard::plainText(Frame* frame)
166 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)