diff options
Diffstat (limited to 'remoting/client')
-rw-r--r-- | remoting/client/plugin/chromoting_scriptable_object.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/client/plugin/chromoting_scriptable_object.h b/remoting/client/plugin/chromoting_scriptable_object.h index e6894f2..5a5127a 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) { } |