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

Side by Side Diff: mojo/services/html_viewer/webclipboard_impl.h

Issue 1037363002: Remove unnecessary 'virtual' annotation from mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved merge conflicts Created 5 years, 8 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 MOJO_SERVICES_HTML_VIEWER_WEBCLIPBOARD_IMPL_H_ 5 #ifndef MOJO_SERVICES_HTML_VIEWER_WEBCLIPBOARD_IMPL_H_
6 #define MOJO_SERVICES_HTML_VIEWER_WEBCLIPBOARD_IMPL_H_ 6 #define MOJO_SERVICES_HTML_VIEWER_WEBCLIPBOARD_IMPL_H_
7 7
8 #include "third_party/WebKit/public/platform/WebClipboard.h" 8 #include "third_party/WebKit/public/platform/WebClipboard.h"
9 #include "third_party/mojo_services/src/clipboard/public/interfaces/clipboard.mo jom.h" 9 #include "third_party/mojo_services/src/clipboard/public/interfaces/clipboard.mo jom.h"
10 10
11 namespace html_viewer { 11 namespace html_viewer {
12 12
13 class WebClipboardImpl : public blink::WebClipboard { 13 class WebClipboardImpl : public blink::WebClipboard {
14 public: 14 public:
15 WebClipboardImpl(mojo::ClipboardPtr clipboard); 15 WebClipboardImpl(mojo::ClipboardPtr clipboard);
16 virtual ~WebClipboardImpl(); 16 virtual ~WebClipboardImpl();
17 17
18 // blink::WebClipboard methods: 18 // blink::WebClipboard methods:
19 virtual uint64_t sequenceNumber(Buffer); 19 uint64_t sequenceNumber(Buffer) override;
20 virtual bool isFormatAvailable(Format, Buffer); 20 bool isFormatAvailable(Format, Buffer) override;
21 virtual blink::WebVector<blink::WebString> readAvailableTypes( 21 blink::WebVector<blink::WebString> readAvailableTypes(
22 Buffer, 22 Buffer,
23 bool* containsFilenames); 23 bool* containsFilenames) override;
24 virtual blink::WebString readPlainText(Buffer); 24 blink::WebString readPlainText(Buffer) override;
25 virtual blink::WebString readHTML(Buffer buffer, 25 blink::WebString readHTML(Buffer buffer,
26 blink::WebURL* pageURL, 26 blink::WebURL* pageURL,
27 unsigned* fragmentStart, 27 unsigned* fragmentStart,
28 unsigned* fragmentEnd); 28 unsigned* fragmentEnd) override;
29 // TODO(erg): readImage() 29 // TODO(erg): readImage()
30 virtual blink::WebString readCustomData(Buffer, const blink::WebString& type); 30 blink::WebString readCustomData(Buffer,
31 virtual void writePlainText(const blink::WebString&); 31 const blink::WebString& type) override;
32 virtual void writeHTML(const blink::WebString& htmlText, 32 void writePlainText(const blink::WebString&) override;
33 const blink::WebURL&, 33 void writeHTML(const blink::WebString& htmlText,
34 const blink::WebString& plainText, 34 const blink::WebURL&,
35 bool writeSmartPaste); 35 const blink::WebString& plainText,
36 bool writeSmartPaste) override;
36 37
37 private: 38 private:
38 // Changes webkit buffers to mojo Clipboard::Types. 39 // Changes webkit buffers to mojo Clipboard::Types.
39 mojo::Clipboard::Type ConvertBufferType(Buffer buffer); 40 mojo::Clipboard::Type ConvertBufferType(Buffer buffer);
40 41
41 mojo::ClipboardPtr clipboard_; 42 mojo::ClipboardPtr clipboard_;
42 43
43 DISALLOW_COPY_AND_ASSIGN(WebClipboardImpl); 44 DISALLOW_COPY_AND_ASSIGN(WebClipboardImpl);
44 }; 45 };
45 46
46 } // namespace html_viewer 47 } // namespace html_viewer
47 48
48 #endif // MOJO_SERVICES_HTML_VIEWER_WEBCLIPBOARD_IMPL_H_ 49 #endif // MOJO_SERVICES_HTML_VIEWER_WEBCLIPBOARD_IMPL_H_
OLDNEW
« no previous file with comments | « mojo/services/html_viewer/test_blink_platform_impl.h ('k') | mojo/services/html_viewer/webcookiejar_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698