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

Issue 9005034: Refactor SignalStrategy so that it can be reused for multiple connections. (Closed)

Created:
9 years ago by Sergey Ulanov
Modified:
8 years, 11 months ago
Reviewers:
Wez
CC:
chromium-reviews, jamiewalch+watch_chromium.org, hclam+watch_chromium.org, simonmorris+watch_chromium.org, wez+watch_chromium.org, amit, sanjeevr, garykac+watch_chromium.org, lambroslambrou+watch_chromium.org, Paweł Hajdan Jr., sergeyu+watch_chromium.org
Visibility:
Public.

Description

Refactor SignalStrategy so that it can be reused for multiple connections. Also updated SessionManager implementation so that session managers can be created before signaling is connected. BUG=107276 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=116192

Patch Set 1 #

Patch Set 2 : - #

Total comments: 26

Patch Set 3 : - #

Patch Set 4 : cleanups #

Patch Set 5 : - #

Unified diffs Side-by-side diffs Delta from patch set Stats (+334 lines, -285 lines) Patch
M remoting/host/chromoting_host.h View 1 2 3 3 chunks +5 lines, -6 lines 0 comments Download
M remoting/host/chromoting_host.cc View 1 2 3 4 5 chunks +23 lines, -44 lines 0 comments Download
M remoting/host/heartbeat_sender.h View 1 chunk +1 line, -2 lines 0 comments Download
M remoting/host/heartbeat_sender.cc View 1 chunk +2 lines, -3 lines 0 comments Download
M remoting/host/heartbeat_sender_unittest.cc View 1 chunk +3 lines, -1 line 0 comments Download
M remoting/host/host_status_observer.h View 1 chunk +1 line, -2 lines 0 comments Download
M remoting/host/it2me_host_user_interface.h View 1 chunk +1 line, -2 lines 0 comments Download
M remoting/host/it2me_host_user_interface.cc View 1 chunk +1 line, -1 line 0 comments Download
M remoting/host/log_to_server.h View 1 chunk +1 line, -2 lines 0 comments Download
remoting/host/log_to_server.cc View 1 chunk +1 line, -2 lines 0 comments Download
M remoting/host/log_to_server_unittest.cc View 6 chunks +9 lines, -6 lines 0 comments Download
M remoting/host/plugin/host_script_object.h View 1 chunk +2 lines, -2 lines 0 comments Download
M remoting/host/plugin/host_script_object.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M remoting/host/register_support_host_request.h View 1 chunk +1 line, -2 lines 0 comments Download
M remoting/host/register_support_host_request.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M remoting/host/register_support_host_request_unittest.cc View 2 chunks +4 lines, -2 lines 0 comments Download
M remoting/jingle_glue/fake_signal_strategy.h View 1 3 chunks +6 lines, -3 lines 0 comments Download
M remoting/jingle_glue/fake_signal_strategy.cc View 1 2 2 chunks +22 lines, -17 lines 0 comments Download
M remoting/jingle_glue/iq_sender.h View 1 chunk +4 lines, -1 line 0 comments Download
M remoting/jingle_glue/iq_sender.cc View 1 chunk +4 lines, -1 line 0 comments Download
M remoting/jingle_glue/iq_sender_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M remoting/jingle_glue/javascript_signal_strategy.h View 3 chunks +8 lines, -5 lines 0 comments Download
M remoting/jingle_glue/javascript_signal_strategy.cc View 1 2 2 chunks +28 lines, -29 lines 0 comments Download
M remoting/jingle_glue/jingle_signaling_connector.h View 1 chunk +4 lines, -1 line 0 comments Download
M remoting/jingle_glue/jingle_signaling_connector.cc View 1 chunk +5 lines, -1 line 0 comments Download
M remoting/jingle_glue/mock_objects.h View 1 chunk +4 lines, -3 lines 0 comments Download
M remoting/jingle_glue/signal_strategy.h View 1 2 1 chunk +38 lines, -16 lines 0 comments Download
M remoting/jingle_glue/xmpp_signal_strategy.h View 3 chunks +7 lines, -4 lines 0 comments Download
M remoting/jingle_glue/xmpp_signal_strategy.cc View 1 2 5 chunks +38 lines, -30 lines 0 comments Download
M remoting/protocol/connection_to_host.h View 1 2 3 4 chunks +4 lines, -10 lines 0 comments Download
M remoting/protocol/connection_to_host.cc View 1 2 3 2 chunks +15 lines, -23 lines 0 comments Download
M remoting/protocol/jingle_session_manager.h View 1 2 3 4 chunks +13 lines, -8 lines 0 comments Download
M remoting/protocol/jingle_session_manager.cc View 1 2 3 7 chunks +26 lines, -13 lines 0 comments Download
M remoting/protocol/jingle_session_unittest.cc View 2 chunks +5 lines, -6 lines 0 comments Download
M remoting/protocol/pepper_session.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M remoting/protocol/pepper_session_manager.h View 3 chunks +7 lines, -4 lines 0 comments Download
M remoting/protocol/pepper_session_manager.cc View 4 chunks +24 lines, -13 lines 0 comments Download
M remoting/protocol/pepper_session_unittest.cc View 2 chunks +5 lines, -6 lines 0 comments Download
remoting/protocol/session_manager.h View 1 2 2 chunks +5 lines, -7 lines 0 comments Download

Messages

Total messages: 6 (0 generated)
Sergey Ulanov
9 years ago (2011-12-20 23:59:49 UTC) #1
Wez
http://codereview.chromium.org/9005034/diff/3001/remoting/host/chromoting_host.cc File remoting/host/chromoting_host.cc (right): http://codereview.chromium.org/9005034/diff/3001/remoting/host/chromoting_host.cc#newcode107 remoting/host/chromoting_host.cc:107: this, allow_nat_traversal_); nit: We should replace Init() with an ...
9 years ago (2011-12-21 23:35:29 UTC) #2
Sergey Ulanov
http://codereview.chromium.org/9005034/diff/3001/remoting/host/chromoting_host.cc File remoting/host/chromoting_host.cc (right): http://codereview.chromium.org/9005034/diff/3001/remoting/host/chromoting_host.cc#newcode107 remoting/host/chromoting_host.cc:107: this, allow_nat_traversal_); On 2011/12/21 23:35:30, Wez wrote: > nit: ...
9 years ago (2011-12-22 21:45:10 UTC) #3
Wez
lgtm
8 years, 11 months ago (2012-01-03 15:07:05 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergeyu@chromium.org/9005034/14001
8 years, 11 months ago (2012-01-03 15:07:13 UTC) #5
commit-bot: I haz the power
8 years, 11 months ago (2012-01-03 15:07:26 UTC) #6
Can't process patch for file remoting/host/log_to_server.cc.
File's status is None, patchset upload is incomplete.

Powered by Google App Engine
This is Rietveld 408576698