Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: webkit/tools/test_shell/simple_clipboard_impl.cc

Issue 100144: Move simple_clipboard_impl.cc to webkit/tools/test_shell where it belongs. (Closed)
Patch Set: vcproj Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/simple_clipboard_impl.cc ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/simple_clipboard_impl.cc
diff --git a/webkit/tools/test_shell/simple_clipboard_impl.cc b/webkit/tools/test_shell/simple_clipboard_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..264dfa5257f231a8f92291b633f2a542868b07bc
--- /dev/null
+++ b/webkit/tools/test_shell/simple_clipboard_impl.cc
@@ -0,0 +1,56 @@
+// 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>
+
+#include "base/clipboard.h"
+#include "base/lazy_instance.h"
+#include "base/string16.h"
+#include "googleurl/src/gurl.h"
+#include "webkit/glue/scoped_clipboard_writer_glue.h"
+
+#include "SkBitmap.h"
+
+// Clipboard glue
+
+#if defined(OS_WIN)
+void ScopedClipboardWriterGlue::WriteBitmapFromPixels(
+ const void* pixels, const gfx::Size& size) {
+ ScopedClipboardWriter::WriteBitmapFromPixels(pixels, size);
+}
+#endif
+
+ScopedClipboardWriterGlue::~ScopedClipboardWriterGlue() {
+}
+
+namespace webkit_glue {
+
+base::LazyInstance<Clipboard> clipboard(base::LINKER_INITIALIZED);
+
+Clipboard* ClipboardGetClipboard() {
+ return clipboard.Pointer();
+}
+
+bool ClipboardIsFormatAvailable(const Clipboard::FormatType& format) {
+ return ClipboardGetClipboard()->IsFormatAvailable(format);
+}
+
+void ClipboardReadText(string16* result) {
+ ClipboardGetClipboard()->ReadText(result);
+}
+
+void ClipboardReadAsciiText(std::string* result) {
+ ClipboardGetClipboard()->ReadAsciiText(result);
+}
+
+void ClipboardReadHTML(string16* markup, GURL* url) {
+ std::string url_str;
+ ClipboardGetClipboard()->ReadHTML(markup, url ? &url_str : NULL);
+ if (url)
+ *url = GURL(url_str);
+}
+
+} // namespace webkit_glue
« no previous file with comments | « webkit/glue/simple_clipboard_impl.cc ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698