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

Unified Diff: remoting/client/plugin/chromoting_scriptable_object.h

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « ppapi/tests/test_transport.cc ('k') | remoting/protocol/content_description.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/chromoting_scriptable_object.h
diff --git a/remoting/client/plugin/chromoting_scriptable_object.h b/remoting/client/plugin/chromoting_scriptable_object.h
index e6894f28844749b30e2579d67f3126149268b065..5a5127a57dc651189ed39565b37432967ed7d606 100644
--- a/remoting/client/plugin/chromoting_scriptable_object.h
+++ b/remoting/client/plugin/chromoting_scriptable_object.h
@@ -182,11 +182,11 @@ class ChromotingScriptableObject
typedef pp::Var (ChromotingScriptableObject::*MethodHandler)(
const std::vector<pp::Var>& args, pp::Var* exception);
struct PropertyDescriptor {
- explicit PropertyDescriptor(const std::string& n, pp::Var a)
+ PropertyDescriptor(const std::string& n, pp::Var a)
: type(NONE), name(n), attribute(a), method(NULL) {
}
- explicit PropertyDescriptor(const std::string& n, MethodHandler m)
+ PropertyDescriptor(const std::string& n, MethodHandler m)
: type(NONE), name(n), method(m) {
}
« no previous file with comments | « ppapi/tests/test_transport.cc ('k') | remoting/protocol/content_description.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698