Chromium Code Reviews| 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 e34f2e139d4eea072059ec93b55dfb8930b36cc4..89bb7270db5848f5bf7557d04e10b57f64bc401d 100644 |
| --- a/remoting/client/plugin/chromoting_scriptable_object.h |
| +++ b/remoting/client/plugin/chromoting_scriptable_object.h |
| @@ -214,13 +214,14 @@ class ChromotingScriptableObject |
| void SignalConnectionInfoChange(); |
| void SignalDesktopSizeChange(); |
| - // Calls to these methods are posted to the plugin thread from |
| - // corresponding Signal*() methods. They actually call JavaScript |
| - // code. This is necessary becase JavaScript needs to be called with |
| - // clean stack - JavaScript event handlers may destroy the plugin. |
| + // Calls to these methods are posted to the plugin thread. They |
| + // actually call JavaScript code. This is necessary becase |
| + // JavaScript needs to be called with clean stack - JavaScript event |
| + // handlers may destroy the plugin. |
|
Wez
2011/08/24 20:44:45
This comment says something is necessary, but does
Sergey Ulanov
2011/08/24 22:42:22
Done.
|
| void DoSignalConnectionInfoChange(); |
| void DoSignalDesktopSizeChange(); |
| void DoSignalLoginChallenge(); |
| + void DoSendIq(const std::string& message_xml); |
| pp::Var DoConnect(const std::vector<pp::Var>& args, pp::Var* exception); |
| pp::Var DoDisconnect(const std::vector<pp::Var>& args, pp::Var* exception); |