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

Unified Diff: webkit/glue/scoped_clipboard_writer_glue.h

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, 1 month 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/clipboard_client.h ('k') | webkit/glue/scoped_clipboard_writer_glue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/scoped_clipboard_writer_glue.h
diff --git a/webkit/glue/scoped_clipboard_writer_glue.h b/webkit/glue/scoped_clipboard_writer_glue.h
index 0eb13fc8fed0ba3114ffcb67d98cc511322e97f4..915b427541c00d0a5a460a54ff93e781c095b371 100644
--- a/webkit/glue/scoped_clipboard_writer_glue.h
+++ b/webkit/glue/scoped_clipboard_writer_glue.h
@@ -8,12 +8,16 @@
#include "ui/base/clipboard/scoped_clipboard_writer.h"
#include "base/memory/scoped_ptr.h"
#include "webkit/glue/clipboard_client.h"
+#include "webkit/glue/webkit_glue_export.h"
-class ScopedClipboardWriterGlue : public ui::ScopedClipboardWriter {
+namespace webkit_glue {
+
+class WEBKIT_GLUE_EXPORT ScopedClipboardWriterGlue
+ : public ui::ScopedClipboardWriter {
public:
explicit ScopedClipboardWriterGlue(webkit_glue::ClipboardClient* client);
- ~ScopedClipboardWriterGlue();
+ virtual ~ScopedClipboardWriterGlue();
void WriteBitmapFromPixels(const void* pixels, const gfx::Size& size);
@@ -22,4 +26,6 @@ class ScopedClipboardWriterGlue : public ui::ScopedClipboardWriter {
DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriterGlue);
};
+} // namespace webkit_glue
+
#endif // WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_
« no previous file with comments | « webkit/glue/clipboard_client.h ('k') | webkit/glue/scoped_clipboard_writer_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698