diff options
author | murgatroid99 <mlumish@google.com> | 2015-07-23 10:40:19 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-07-23 10:40:19 -0700 |
commit | a627d8939d4ea116a5b4f8ce8df0105db421edc3 (patch) | |
tree | bab967c5e245e226cad0921971daaaac2e2cb592 /src/node/ext | |
parent | 6a7418cd20f065f8d6e7f73e82b6d465c75514f5 (diff) |
Changed object keys to valid identifier names
Diffstat (limited to 'src/node/ext')
-rw-r--r-- | src/node/ext/call.cc | 8 | ||||
-rw-r--r-- | src/node/ext/server.cc | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/node/ext/call.cc b/src/node/ext/call.cc index 15c9b2d97d..9a01816958 100644 --- a/src/node/ext/call.cc +++ b/src/node/ext/call.cc @@ -192,7 +192,7 @@ class SendMetadataOp : public Op { } protected: std::string GetTypeString() const { - return "send metadata"; + return "send_metadata"; } }; @@ -216,7 +216,7 @@ class SendMessageOp : public Op { } protected: std::string GetTypeString() const { - return "send message"; + return "send_message"; } }; @@ -232,7 +232,7 @@ class SendClientCloseOp : public Op { } protected: std::string GetTypeString() const { - return "client close"; + return "client_close"; } }; @@ -276,7 +276,7 @@ class SendServerStatusOp : public Op { } protected: std::string GetTypeString() const { - return "send status"; + return "send_status"; } }; diff --git a/src/node/ext/server.cc b/src/node/ext/server.cc index 34cde9ffab..8554fce777 100644 --- a/src/node/ext/server.cc +++ b/src/node/ext/server.cc @@ -108,7 +108,7 @@ class NewCallOp : public Op { protected: std::string GetTypeString() const { - return "new call"; + return "new_call"; } }; |