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

  /external/chromium_org/jingle/notifier/listener/
push_client.h 18 // A PushClient is an interface for classes that implement a push
21 class PushClient {
23 virtual ~PushClient();
25 // Creates a default non-blocking PushClient implementation from the
27 static scoped_ptr<PushClient> CreateDefault(
30 // Creates a default blocking PushClient implementation from the
33 static scoped_ptr<PushClient> CreateDefaultOnIOThread(
push_client.cc 16 PushClient::~PushClient() {}
20 scoped_ptr<PushClient> CreateXmppPushClient(
22 return scoped_ptr<PushClient>(new XmppPushClient(notifier_options));
27 scoped_ptr<PushClient> PushClient::CreateDefault(
29 return scoped_ptr<PushClient>(new NonBlockingPushClient(
34 scoped_ptr<PushClient> PushClient::CreateDefaultOnIOThread(

Completed in 32 milliseconds