summaryrefslogtreecommitdiffstats
path: root/remoting/jingle_glue/fake_signal_strategy.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-29 22:31:04 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-29 22:31:04 +0000
commitb6e2d6a6e8f662f3e1b119c5f832bfb6035e2e9d (patch)
tree2de27bafe0491fc83da0386d1cb672c0068fbd55 /remoting/jingle_glue/fake_signal_strategy.h
parent1d1b6edb9404bbd8586965b141e799143f6efabb (diff)
downloadchromium_src-b6e2d6a6e8f662f3e1b119c5f832bfb6035e2e9d.zip
chromium_src-b6e2d6a6e8f662f3e1b119c5f832bfb6035e2e9d.tar.gz
chromium_src-b6e2d6a6e8f662f3e1b119c5f832bfb6035e2e9d.tar.bz2
Remove JingleClient.
Everything that JingleClient was doing has been rolled into JingleSessionManager BUG=None TEST=Remoting still works. Review URL: http://codereview.chromium.org/7277050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91035 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/jingle_glue/fake_signal_strategy.h')
-rw-r--r--remoting/jingle_glue/fake_signal_strategy.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/remoting/jingle_glue/fake_signal_strategy.h b/remoting/jingle_glue/fake_signal_strategy.h
index 40f6ee1..83e1ae9 100644
--- a/remoting/jingle_glue/fake_signal_strategy.h
+++ b/remoting/jingle_glue/fake_signal_strategy.h
@@ -7,6 +7,7 @@
#include <string>
+#include "base/task.h"
#include "base/threading/non_thread_safe.h"
#include "remoting/jingle_glue/javascript_iq_request.h"
#include "remoting/jingle_glue/signal_strategy.h"
@@ -33,6 +34,8 @@ class FakeSignalStrategy : public SignalStrategy,
// Called by the |peer_|. Takes ownership of |stanza|.
void OnIncomingMessage(buzz::XmlElement* stanza);
+ void DeliverIncomingMessage(buzz::XmlElement* stanza);
+
std::string jid_;
FakeSignalStrategy* peer_;
Listener* listener_;
@@ -40,6 +43,8 @@ class FakeSignalStrategy : public SignalStrategy,
int last_id_;
+ ScopedRunnableMethodFactory<FakeSignalStrategy> task_factory_;
+
DISALLOW_COPY_AND_ASSIGN(FakeSignalStrategy);
};