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

Side by Side Diff: chrome/browser/renderer_host/pepper/pepper_flash_clipboard_message_filter.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 (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 CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE R_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE R_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE R_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE R_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 21 matching lines...) Expand all
32 // clipboard formats are). This is done so that we don't have to have use real 32 // clipboard formats are). This is done so that we don't have to have use real
33 // clipboard types for each custom clipboard format which may be a limited 33 // clipboard types for each custom clipboard format which may be a limited
34 // resource on a particular platform. 34 // resource on a particular platform.
35 class PepperFlashClipboardMessageFilter 35 class PepperFlashClipboardMessageFilter
36 : public ppapi::host::ResourceMessageFilter { 36 : public ppapi::host::ResourceMessageFilter {
37 public: 37 public:
38 PepperFlashClipboardMessageFilter(); 38 PepperFlashClipboardMessageFilter();
39 39
40 protected: 40 protected:
41 // ppapi::host::ResourceMessageFilter overrides. 41 // ppapi::host::ResourceMessageFilter overrides.
42 virtual scoped_refptr<base::TaskRunner> OverrideTaskRunnerForMessage( 42 scoped_refptr<base::TaskRunner> OverrideTaskRunnerForMessage(
43 const IPC::Message& msg) override; 43 const IPC::Message& msg) override;
44 virtual int32_t OnResourceMessageReceived( 44 int32_t OnResourceMessageReceived(
45 const IPC::Message& msg, 45 const IPC::Message& msg,
46 ppapi::host::HostMessageContext* context) override; 46 ppapi::host::HostMessageContext* context) override;
47 47
48 private: 48 private:
49 virtual ~PepperFlashClipboardMessageFilter(); 49 ~PepperFlashClipboardMessageFilter() override;
50 50
51 int32_t OnMsgRegisterCustomFormat( 51 int32_t OnMsgRegisterCustomFormat(
52 ppapi::host::HostMessageContext* host_context, 52 ppapi::host::HostMessageContext* host_context,
53 const std::string& format_name); 53 const std::string& format_name);
54 int32_t OnMsgIsFormatAvailable(ppapi::host::HostMessageContext* host_context, 54 int32_t OnMsgIsFormatAvailable(ppapi::host::HostMessageContext* host_context,
55 uint32_t clipboard_type, 55 uint32_t clipboard_type,
56 uint32_t format); 56 uint32_t format);
57 int32_t OnMsgReadData(ppapi::host::HostMessageContext* host_context, 57 int32_t OnMsgReadData(ppapi::host::HostMessageContext* host_context,
58 uint32_t clipoard_type, 58 uint32_t clipoard_type,
59 uint32_t format); 59 uint32_t format);
60 int32_t OnMsgWriteData(ppapi::host::HostMessageContext* host_context, 60 int32_t OnMsgWriteData(ppapi::host::HostMessageContext* host_context,
61 uint32_t clipboard_type, 61 uint32_t clipboard_type,
62 const std::vector<uint32_t>& formats, 62 const std::vector<uint32_t>& formats,
63 const std::vector<std::string>& data); 63 const std::vector<std::string>& data);
64 int32_t OnMsgGetSequenceNumber(ppapi::host::HostMessageContext* host_context, 64 int32_t OnMsgGetSequenceNumber(ppapi::host::HostMessageContext* host_context,
65 uint32_t clipboard_type); 65 uint32_t clipboard_type);
66 66
67 int32_t WriteClipboardDataItem(uint32_t format, 67 int32_t WriteClipboardDataItem(uint32_t format,
68 const std::string& data, 68 const std::string& data,
69 ui::ScopedClipboardWriter* scw); 69 ui::ScopedClipboardWriter* scw);
70 70
71 ppapi::FlashClipboardFormatRegistry custom_formats_; 71 ppapi::FlashClipboardFormatRegistry custom_formats_;
72 72
73 DISALLOW_COPY_AND_ASSIGN(PepperFlashClipboardMessageFilter); 73 DISALLOW_COPY_AND_ASSIGN(PepperFlashClipboardMessageFilter);
74 }; 74 };
75 75
76 } // namespace chrome 76 } // namespace chrome
77 77
78 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FI LTER_H_ 78 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FI LTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698