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

Side by Side Diff: webkit/support/simple_clipboard_impl.h

Issue 17420005: Move the following clipboard files from webkit\glue to webkit\renderer. These files now live in the… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/support/mock_webclipboard_impl.cc ('k') | webkit/support/simple_clipboard_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_SUPPORT_SIMPLE_CLIPBOARD_IMPL_H_
6 #define WEBKIT_SUPPORT_SIMPLE_CLIPBOARD_IMPL_H_
7
8 #include "base/compiler_specific.h"
9 #include "webkit/glue/clipboard_client.h"
10
11 class SimpleClipboardClient : public webkit_glue::ClipboardClient {
12 public:
13 SimpleClipboardClient();
14 virtual ~SimpleClipboardClient();
15
16 virtual ui::Clipboard* GetClipboard() OVERRIDE;
17 virtual uint64 GetSequenceNumber(ui::Clipboard::Buffer buffer) OVERRIDE;
18 virtual bool IsFormatAvailable(const ui::Clipboard::FormatType& format,
19 ui::Clipboard::Buffer buffer) OVERRIDE;
20 virtual void Clear(ui::Clipboard::Buffer buffer) OVERRIDE;
21 virtual void ReadAvailableTypes(ui::Clipboard::Buffer buffer,
22 std::vector<base::string16>* types,
23 bool* contains_filenames) OVERRIDE;
24 virtual void ReadText(ui::Clipboard::Buffer buffer,
25 base::string16* result) OVERRIDE;
26 virtual void ReadAsciiText(ui::Clipboard::Buffer buffer,
27 std::string* result) OVERRIDE;
28 virtual void ReadHTML(ui::Clipboard::Buffer buffer, base::string16* markup,
29 GURL* url, uint32* fragment_start,
30 uint32* fragment_end) OVERRIDE;
31 virtual void ReadRTF(ui::Clipboard::Buffer buffer,
32 std::string* result) OVERRIDE;
33 virtual void ReadImage(ui::Clipboard::Buffer buffer,
34 std::string* data) OVERRIDE;
35 virtual void ReadCustomData(ui::Clipboard::Buffer buffer,
36 const base::string16& type,
37 base::string16* data) OVERRIDE;
38 virtual void ReadData(const ui::Clipboard::FormatType& format,
39 std::string* data) OVERRIDE;
40 virtual WriteContext* CreateWriteContext() OVERRIDE;
41 };
42
43 #endif // WEBKIT_SUPPORT_SIMPLE_CLIPBOARD_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/support/mock_webclipboard_impl.cc ('k') | webkit/support/simple_clipboard_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698