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

Unified Diff: webkit/glue/scoped_clipboard_writer_glue.cc

Issue 11225021: Move flash clipboard to the new proxy and add custom format support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 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
Index: webkit/glue/scoped_clipboard_writer_glue.cc
diff --git a/webkit/glue/scoped_clipboard_writer_glue.cc b/webkit/glue/scoped_clipboard_writer_glue.cc
index f648b7bf1c1b8ebd3d3e80170a89fc22b2337492..b16ac04ef245777e1a929e29b62b387900459086 100644
--- a/webkit/glue/scoped_clipboard_writer_glue.cc
+++ b/webkit/glue/scoped_clipboard_writer_glue.cc
@@ -5,6 +5,8 @@
#include "webkit/glue/scoped_clipboard_writer_glue.h"
#include "base/logging.h"
+namespace webkit_glue {
+
ScopedClipboardWriterGlue::ScopedClipboardWriterGlue(
webkit_glue::ClipboardClient* client)
: ui::ScopedClipboardWriter(client->GetClipboard(),
@@ -29,3 +31,5 @@ void ScopedClipboardWriterGlue::WriteBitmapFromPixels(const void* pixels,
ScopedClipboardWriter::WriteBitmapFromPixels(pixels, size);
}
}
+
+} // namespace webkit_glue

Powered by Google App Engine
This is Rietveld 408576698