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

Unified Diff: webkit/glue/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 | « no previous file | webkit/tools/test_shell/simple_clipboard_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/simple_clipboard_impl.cc
diff --git a/webkit/glue/simple_clipboard_impl.cc b/webkit/glue/simple_clipboard_impl.cc
deleted file mode 100644
index 264dfa5257f231a8f92291b633f2a542868b07bc..0000000000000000000000000000000000000000
--- a/webkit/glue/simple_clipboard_impl.cc
+++ /dev/null
@@ -1,56 +0,0 @@
-// 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 | « no previous file | webkit/tools/test_shell/simple_clipboard_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698