HomeSort by relevance Sort by last modified time
    Searched defs:PullChannel (Results 1 - 2 of 2) sorted by null

  /external/libweave/src/notification/
pull_channel.h 25 class PullChannel : public NotificationChannel {
27 PullChannel(base::TimeDelta pull_interval, provider::TaskRunner* task_runner);
28 ~PullChannel() override = default;
47 base::WeakPtrFactory<PullChannel> weak_ptr_factory_{this};
48 DISALLOW_COPY_AND_ASSIGN(PullChannel);
pull_channel.cc 17 PullChannel::PullChannel(base::TimeDelta pull_interval,
21 std::string PullChannel::GetName() const {
25 bool PullChannel::IsConnected() const {
29 void PullChannel::AddChannelParameters(base::DictionaryValue* channel_json) {
33 void PullChannel::Start(NotificationDelegate* delegate) {
39 void PullChannel::RePost() {
44 base::Bind(&PullChannel::OnTimer, weak_ptr_factory_.GetWeakPtr()),
48 void PullChannel::Stop() {
53 void PullChannel::UpdatePullInterval(base::TimeDelta pull_interval)
    [all...]

Completed in 40 milliseconds