| Index: webkit/glue/webclipboard_impl.h
|
| diff --git a/webkit/glue/webclipboard_impl.h b/webkit/glue/webclipboard_impl.h
|
| index 6b496b6aac44fc7db192b043b6197f24510fae3e..82d3994e6b17651cd87fdfa02b0fead4ab49bbed 100644
|
| --- a/webkit/glue/webclipboard_impl.h
|
| +++ b/webkit/glue/webclipboard_impl.h
|
| @@ -11,6 +11,7 @@
|
| #include <string>
|
|
|
| namespace webkit_glue {
|
| +class ClipboardClient;
|
|
|
| class WebClipboardImpl : public WebKit::WebClipboard {
|
| public:
|
| @@ -19,6 +20,8 @@ class WebClipboardImpl : public WebKit::WebClipboard {
|
| static std::string URLToImageMarkup(const WebKit::WebURL& url,
|
| const WebKit::WebString& title);
|
|
|
| + explicit WebClipboardImpl(ClipboardClient* client);
|
| +
|
| virtual ~WebClipboardImpl();
|
|
|
| // WebClipboard methods:
|
| @@ -50,6 +53,7 @@ class WebClipboardImpl : public WebKit::WebClipboard {
|
|
|
| private:
|
| bool ConvertBufferType(Buffer, ui::Clipboard::Buffer*);
|
| + ClipboardClient* client_;
|
| };
|
|
|
| } // namespace webkit_glue
|
|
|