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

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

Issue 7730002: Call SendIq() from plugin asynchronously. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
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);

Powered by Google App Engine
This is Rietveld 408576698