2009-07-24 21:11:01 +02:00
|
|
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "webkit/glue/webkit_glue.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2009-10-13 03:39:30 +02:00
|
|
|
#include "app/clipboard/clipboard.h"
|
2009-07-24 21:11:01 +02:00
|
|
|
#include "base/lazy_instance.h"
|
|
|
|
#include "base/string16.h"
|
|
|
|
#include "googleurl/src/gurl.h"
|
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
|
|
#include "webkit/glue/scoped_clipboard_writer_glue.h"
|
|
|
|
|
|
|
|
// Clipboard glue
|
|
|
|
|
|
|
|
void ScopedClipboardWriterGlue::WriteBitmapFromPixels(
|
|
|
|
const void* pixels, const gfx::Size& size) {
|
|
|
|
ScopedClipboardWriter::WriteBitmapFromPixels(pixels, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedClipboardWriterGlue::~ScopedClipboardWriterGlue() {
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace webkit_glue {
|
|
|
|
|
|
|
|
base::LazyInstance<Clipboard> clipboard(base::LINKER_INITIALIZED);
|
|
|
|
|
|
|
|
Clipboard* ClipboardGetClipboard() {
|
|
|
|
return clipboard.Pointer();
|
|
|
|
}
|
|
|
|
|
2009-09-17 18:56:32 +02:00
|
|
|
bool ClipboardIsFormatAvailable(const Clipboard::FormatType& format,
|
|
|
|
Clipboard::Buffer buffer) {
|
|
|
|
return ClipboardGetClipboard()->IsFormatAvailable(format, buffer);
|
2009-07-24 21:11:01 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 18:56:32 +02:00
|
|
|
void ClipboardReadText(Clipboard::Buffer buffer, string16* result) {
|
|
|
|
ClipboardGetClipboard()->ReadText(buffer, result);
|
2009-07-24 21:11:01 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 18:56:32 +02:00
|
|
|
void ClipboardReadAsciiText(Clipboard::Buffer buffer, std::string* result) {
|
|
|
|
ClipboardGetClipboard()->ReadAsciiText(buffer, result);
|
2009-07-24 21:11:01 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 18:56:32 +02:00
|
|
|
void ClipboardReadHTML(Clipboard::Buffer buffer, string16* markup, GURL* url) {
|
2009-07-24 21:11:01 +02:00
|
|
|
std::string url_str;
|
2009-09-17 18:56:32 +02:00
|
|
|
ClipboardGetClipboard()->ReadHTML(buffer, markup, url ? &url_str : NULL);
|
2009-07-24 21:11:01 +02:00
|
|
|
if (url)
|
|
|
|
*url = GURL(url_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace webkit_glue
|