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

Unified Diff: remoting/protocol/clipboard_echo_filter.h

Issue 11419224: Add missing (and remove superfluous) 'explicit' from constructors. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + remove non-straightforward changes Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/channel_multiplexer.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/clipboard_echo_filter.h
diff --git a/remoting/protocol/clipboard_echo_filter.h b/remoting/protocol/clipboard_echo_filter.h
index 634868595c945f8f4da15baa7c83c69f262044a8..1205f162030f909e2e0d295058d26b822e719bc0 100644
--- a/remoting/protocol/clipboard_echo_filter.h
+++ b/remoting/protocol/clipboard_echo_filter.h
@@ -38,7 +38,7 @@ class ClipboardEchoFilter {
private:
class ClientFilter : public ClipboardStub {
public:
- ClientFilter(ClipboardEchoFilter* filter);
+ explicit ClientFilter(ClipboardEchoFilter* filter);
virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE;
private:
@@ -47,7 +47,7 @@ class ClipboardEchoFilter {
class HostFilter : public ClipboardStub {
public:
- HostFilter(ClipboardEchoFilter* filter);
+ explicit HostFilter(ClipboardEchoFilter* filter);
virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE;
private:
« no previous file with comments | « remoting/protocol/channel_multiplexer.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698