HomeSort by relevance Sort by last modified time
    Searched refs:PushClient (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/jingle/notifier/listener/
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(
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_unittest.cc 38 const scoped_ptr<PushClient> push_client(
39 PushClient::CreateDefault(notifier_options_));
48 base::Bind(base::IgnoreResult(&PushClient::CreateDefault),
56 const scoped_ptr<PushClient> push_client(
57 PushClient::CreateDefaultOnIOThread(notifier_options_));
non_blocking_push_client.h 25 // This class implements a PushClient that doesn't block; it delegates
26 // to another blocking PushClient on a separate thread.
29 class NonBlockingPushClient : public PushClient {
31 // The type for a function that creates a (blocking) PushClient.
33 typedef base::Callback<scoped_ptr<PushClient>()>
37 // to that PushClient.
44 // PushClient implementation.
non_blocking_push_client_unittest.cc 50 scoped_ptr<PushClient> CreateFakePushClient() {
53 return scoped_ptr<PushClient>();
56 return scoped_ptr<PushClient>(fake_push_client_);
fake_push_client.h 18 // PushClient implementation that can be used for testing.
19 class FakePushClient : public PushClient {
24 // PushClient implementation.
xmpp_push_client.h 37 public PushClient,
46 // PushClient implementation.
non_blocking_push_client.cc 60 scoped_ptr<PushClient> delegate_push_client_;
  /external/chromium_org/sync/notifier/
p2p_invalidator.h 29 class PushClient;
97 P2PInvalidator(scoped_ptr<notifier::PushClient> push_client,
135 scoped_ptr<notifier::PushClient> push_client_;
push_client_channel.h 19 class PushClient;
25 // routes messages through a PushClient.
32 explicit PushClientChannel(scoped_ptr<notifier::PushClient> push_client);
50 // notifier::PushClient::Observer implementation.
87 scoped_ptr<notifier::PushClient> push_client_;
invalidation_notifier.h 31 class PushClient;
45 scoped_ptr<notifier::PushClient> push_client,
invalidation_notifier_unittest.cc 43 scoped_ptr<notifier::PushClient>(new notifier::FakePushClient()),
sync_invalidation_listener.h 39 class PushClient;
74 scoped_ptr<notifier::PushClient> push_client);
172 notifier::PushClient* const push_client_;
sync_system_resources.h 27 class PushClient;
123 SyncSystemResources(scoped_ptr<notifier::PushClient> push_client,
invalidation_notifier.cc 21 scoped_ptr<notifier::PushClient> push_client,
push_client_channel.cc 21 scoped_ptr<notifier::PushClient> push_client)
sync_system_resources_unittest.cc 53 scoped_ptr<notifier::PushClient>(new notifier::FakePushClient()),
non_blocking_invalidator.cc 88 notifier::PushClient::CreateDefaultOnIOThread(notifier_options),
p2p_invalidator.cc 139 P2PInvalidator::P2PInvalidator(scoped_ptr<notifier::PushClient> push_client,
push_client_channel_unittest.cc 23 scoped_ptr<notifier::PushClient>(fake_push_client_)),
sync_system_resources.cc 198 scoped_ptr<notifier::PushClient> push_client,
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_xmpp_listener.h 31 class PushClient;
102 scoped_ptr<notifier::PushClient> push_client_;
cloud_print_xmpp_listener.cc 70 push_client_ = notifier::PushClient::CreateDefault(options);
  /external/chromium_org/chrome/browser/invalidation/
p2p_invalidation_service.cc 27 notifier::PushClient::CreateDefault(notifier_options),
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_proxy_backend.cc 134 scoped_ptr<notifier::PushClient> push_client_;
334 push_client_ = notifier::PushClient::CreateDefault(notifier_options);
351 // Important to delete the PushClient on this thread.

Completed in 678 milliseconds

1 2