~ubuntu-branches/ubuntu/trusty/content-hub/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/acceptance-tests/app_hub_communication_known_peers.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Ken VanDine, Robert Bruce Park, Guenter Schwann, Ubuntu daily release
  • Date: 2013-10-11 05:41:10 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20131011054110-6ncavqsr1vu5ad3u
Tags: 0.0+13.10.20131011-0ubuntu1
[ Ken VanDine ]
* Make libcontent-hub0 recommend content-hub .
* invoke the destination when the transfer is charged .
* Added a click hook, which iterates installed known peers, removing
  them when they are no longer installed and adding peers when needed.

[ Robert Bruce Park ]
* New component for the importer to indicate an ongoing transfer.

[ Guenter Schwann ]
* New component for the importer to indicate an ongoing transfer.
* Quit the source app on charged/abort when it was started by the
  content hub.

[ Ubuntu daily release ]
* Automatic snapshot from revision 60

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
 
67
67
    MOCK_METHOD1(default_peer_for_type, cuc::Peer(cuc::Type t));
68
68
    MOCK_METHOD2(enumerate_known_peers_for_type, void(cuc::Type, const std::function<void(const cuc::Peer&)>&));
69
 
    
 
69
    MOCK_METHOD1(enumerate_known_peers, void(const std::function<void(const cuc::Peer&)>&));
70
70
    MOCK_METHOD2(install_default_peer_for_type, bool(cuc::Type, cuc::Peer));
71
71
    MOCK_METHOD2(install_peer_for_type, bool(cuc::Type, cuc::Peer));
 
72
    MOCK_METHOD1(remove_peer, bool(cuc::Peer));
72
73
};
73
74
}
74
75