summaryrefslogtreecommitdiff
path: root/chromium/jingle/notifier/listener/push_client.cc
blob: f18ed52d30be31dd51825ffcef001b762f00cb55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "jingle/notifier/listener/push_client.h"

#include <cstddef>

#include "base/bind.h"
#include "base/single_thread_task_runner.h"
#include "jingle/notifier/listener/non_blocking_push_client.h"
#include "jingle/notifier/listener/xmpp_push_client.h"

namespace notifier {

PushClient::~PushClient() {}

namespace {

scoped_ptr<PushClient> CreateXmppPushClient(
    const NotifierOptions& notifier_options) {
  return scoped_ptr<PushClient>(new XmppPushClient(notifier_options));
}

}  // namespace

scoped_ptr<PushClient> PushClient::CreateDefault(
    const NotifierOptions& notifier_options) {
  return scoped_ptr<PushClient>(new NonBlockingPushClient(
      notifier_options.request_context_getter->GetNetworkTaskRunner(),
      base::Bind(&CreateXmppPushClient, notifier_options)));
}

scoped_ptr<PushClient> PushClient::CreateDefaultOnIOThread(
    const NotifierOptions& notifier_options) {
  CHECK(notifier_options.request_context_getter->GetNetworkTaskRunner()->
        BelongsToCurrentThread());
  return CreateXmppPushClient(notifier_options);
}

}  // namespace notifier