Home | History | Annotate | Download | only in clipboard

Lines Matching refs:buffer

191   // Buffer designates which clipboard the action should be applied to.
193 // buffer.
194 enum Buffer {
199 static bool IsValidBuffer(int32 buffer) {
200 switch (buffer) {
211 static Buffer FromInt(int32 buffer) {
212 return static_cast<Buffer>(buffer);
236 void WriteObjects(Buffer buffer, const ObjectMap& objects);
241 uint64 GetSequenceNumber(Buffer buffer);
244 bool IsFormatAvailable(const FormatType& format, Buffer buffer) const;
247 void Clear(Buffer buffer);
249 void ReadAvailableTypes(Buffer buffer, std::vector<string16>* types,
253 void ReadText(Buffer buffer, string16* result) const;
256 void ReadAsciiText(Buffer buffer, std::string* result) const;
262 void ReadHTML(Buffer buffer, string16* markup, std::string* src_url,
267 void ReadRTF(Buffer buffer, std::string* result) const;
270 SkBitmap ReadImage(Buffer buffer) const;
272 void ReadCustomData(Buffer buffer,
389 void SetGtkClipboard(Buffer buffer);
393 // Find the gtk clipboard for the passed buffer enum.
394 GtkClipboard* LookupBackingClipboard(Buffer clipboard) const;