This source file includes following definitions.
- CreateXmppPushClient
- CreateDefault
- CreateDefaultOnIOThread
#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));
}
}
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);
}
}