OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_ | 5 #ifndef WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_ |
6 #define WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_ | 6 #define WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_ |
7 | 7 |
8 #include "ui/base/clipboard/scoped_clipboard_writer.h" | 8 #include "ui/base/clipboard/scoped_clipboard_writer.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "webkit/glue/clipboard_client.h" | 10 #include "webkit/glue/clipboard_client.h" |
| 11 #include "webkit/glue/webkit_glue_export.h" |
11 | 12 |
12 class ScopedClipboardWriterGlue : public ui::ScopedClipboardWriter { | 13 namespace webkit_glue { |
| 14 |
| 15 class WEBKIT_GLUE_EXPORT ScopedClipboardWriterGlue |
| 16 : public ui::ScopedClipboardWriter { |
13 public: | 17 public: |
14 explicit ScopedClipboardWriterGlue(webkit_glue::ClipboardClient* client); | 18 explicit ScopedClipboardWriterGlue(webkit_glue::ClipboardClient* client); |
15 | 19 |
16 ~ScopedClipboardWriterGlue(); | 20 virtual ~ScopedClipboardWriterGlue(); |
17 | 21 |
18 void WriteBitmapFromPixels(const void* pixels, const gfx::Size& size); | 22 void WriteBitmapFromPixels(const void* pixels, const gfx::Size& size); |
19 | 23 |
20 private: | 24 private: |
21 scoped_ptr<webkit_glue::ClipboardClient::WriteContext> context_; | 25 scoped_ptr<webkit_glue::ClipboardClient::WriteContext> context_; |
22 DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriterGlue); | 26 DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriterGlue); |
23 }; | 27 }; |
24 | 28 |
| 29 } // namespace webkit_glue |
| 30 |
25 #endif // WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_ | 31 #endif // WEBKIT_GLUE_SCOPED_CLIPBOARD_WRITER_GLUE_H_ |
OLD | NEW |