| Index: chrome/common/net/notifier/listener/mediator_thread_impl.h
|
| diff --git a/chrome/common/net/notifier/listener/mediator_thread_impl.h b/chrome/common/net/notifier/listener/mediator_thread_impl.h
|
| index 30683e81e905cf5c6dffd92e8e68f52f20738e41..fb14d5b60bf590d3bddaba7fb5ac912b30caf79b 100644
|
| --- a/chrome/common/net/notifier/listener/mediator_thread_impl.h
|
| +++ b/chrome/common/net/notifier/listener/mediator_thread_impl.h
|
| @@ -83,6 +83,17 @@ class MediatorThreadImpl
|
| const std::vector<std::string>& subscribed_services_list);
|
| virtual void SendNotification(const OutgoingNotificationData& data);
|
|
|
| + protected:
|
| + // Should only be called after Start().
|
| + MessageLoop* worker_message_loop();
|
| +
|
| + // Should only be called after OnConnectionStateChange() is called
|
| + // on the delegate with true.
|
| + buzz::XmppClient* xmpp_client();
|
| +
|
| + Delegate* delegate_;
|
| + MessageLoop* parent_message_loop_;
|
| +
|
| private:
|
| void StartLibjingleThread();
|
| void PumpLibjingleLoop();
|
| @@ -117,11 +128,6 @@ class MediatorThreadImpl
|
| void OnSubscriptionStateChangeOnParentThread(
|
| bool success);
|
|
|
| - MessageLoop* worker_message_loop();
|
| - buzz::XmppClient* xmpp_client();
|
| -
|
| - Delegate* delegate_;
|
| - MessageLoop* parent_message_loop_;
|
| chrome_common_net::NetworkChangeNotifierThread*
|
| network_change_notifier_thread_;
|
| base::Thread worker_thread_;
|
|
|