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

Side by Side Diff: webkit/tools/test_shell/simple_clipboard_impl.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_TOOLS_TEST_SHELL_SIMPLE_CLIPBOARD_IMPL_H_ 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_SIMPLE_CLIPBOARD_IMPL_H_
6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_CLIPBOARD_IMPL_H_ 6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_CLIPBOARD_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "webkit/glue/clipboard_client.h" 9 #include "webkit/glue/clipboard_client.h"
10 10
(...skipping 17 matching lines...) Expand all
28 virtual void ReadHTML(ui::Clipboard::Buffer buffer, string16* markup, 28 virtual void ReadHTML(ui::Clipboard::Buffer buffer, string16* markup,
29 GURL* url, uint32* fragment_start, 29 GURL* url, uint32* fragment_start,
30 uint32* fragment_end) OVERRIDE; 30 uint32* fragment_end) OVERRIDE;
31 virtual void ReadRTF(ui::Clipboard::Buffer buffer, 31 virtual void ReadRTF(ui::Clipboard::Buffer buffer,
32 std::string* result) OVERRIDE; 32 std::string* result) OVERRIDE;
33 virtual void ReadImage(ui::Clipboard::Buffer buffer, 33 virtual void ReadImage(ui::Clipboard::Buffer buffer,
34 std::string* data) OVERRIDE; 34 std::string* data) OVERRIDE;
35 virtual void ReadCustomData(ui::Clipboard::Buffer buffer, 35 virtual void ReadCustomData(ui::Clipboard::Buffer buffer,
36 const string16& type, 36 const string16& type,
37 string16* data) OVERRIDE; 37 string16* data) OVERRIDE;
38 virtual void ReadData(const ui::Clipboard::FormatType& format,
39 std::string* data) OVERRIDE;
38 virtual WriteContext* CreateWriteContext() OVERRIDE; 40 virtual WriteContext* CreateWriteContext() OVERRIDE;
39 }; 41 };
40 42
41 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_CLIPBOARD_IMPL_H_ 43 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_CLIPBOARD_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_flash_impl.cc ('k') | webkit/tools/test_shell/simple_clipboard_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698