| 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) {
|
| }
|
|
|
|
|