mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 108684.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@360 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -35,16 +35,20 @@ ui::Clipboard* ClipboardGetClipboard() {
|
||||
return clipboard.Pointer();
|
||||
}
|
||||
|
||||
uint64 ClipboardGetSequenceNumber() {
|
||||
return ClipboardGetClipboard()->GetSequenceNumber();
|
||||
}
|
||||
|
||||
bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format,
|
||||
ui::Clipboard::Buffer buffer) {
|
||||
return ClipboardGetClipboard()->IsFormatAvailable(format, buffer);
|
||||
}
|
||||
|
||||
// TODO(dcheng): Implement.
|
||||
void ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer,
|
||||
std::vector<string16>* types,
|
||||
bool* contains_filenames) {
|
||||
return;
|
||||
return ClipboardGetClipboard()->ReadAvailableTypes(buffer, types,
|
||||
contains_filenames);
|
||||
}
|
||||
|
||||
void ClipboardReadText(ui::Clipboard::Buffer buffer, string16* result) {
|
||||
@ -86,18 +90,4 @@ void ClipboardReadImage(ui::Clipboard::Buffer buffer, std::string* data) {
|
||||
}
|
||||
}
|
||||
|
||||
bool ClipboardReadData(ui::Clipboard::Buffer buffer, const string16& type,
|
||||
string16* data, string16* metadata) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool ClipboardReadFilenames(ui::Clipboard::Buffer buffer,
|
||||
std::vector<string16>* filenames) {
|
||||
return false;
|
||||
}
|
||||
|
||||
uint64 ClipboardGetSequenceNumber() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace webkit_glue
|
||||
|
Reference in New Issue
Block a user