summaryrefslogtreecommitdiffstats
path: root/blimp/net/blimp_message_checkpointer_unittest.cc
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused using declarations from unit-test.wez2015-12-211-2/+0
| | | | | | Review URL: https://codereview.chromium.org/1534333002 Cr-Commit-Position: refs/heads/master@{#366411}
* Switch to standard integer types in blimp/.avi2015-12-201-4/+4
| | | | | | | | | BUG=138542 TBR=wez@chromium.org Review URL: https://codereview.chromium.org/1538253002 Cr-Commit-Position: refs/heads/master@{#366303}
* The checkpointer takes income messages from blimp connection, monitors their ↵haibinlu2015-12-191-5/+32
| | | | | | | | | | message_id, sends checkpoint messages out via the output buffer, intercepts checkpoint ack messages and forwards the rest, informs the output buffer about checkpoint ID. BUG= Review URL: https://codereview.chromium.org/1513413003 Cr-Commit-Position: refs/heads/master@{#366260}
* Implement a simple BlimpMessageCheckpointer.wez2015-12-101-0/+157
BlimpMessageCheckpointer monitors the incoming message stream to dispatch checkpoint acknowledgements back to the peer as features process incoming messages. Acknowledgements will be handled by the ProtocolControl message-handler which will use them to e.g. inform the BlimpMessageOutputBuffer so it can clean up buffered messages. BUG=568272 Review URL: https://codereview.chromium.org/1513063002 Cr-Commit-Position: refs/heads/master@{#364525}