| Index: sync/notifier/p2p_invalidator.h
|
| diff --git a/sync/notifier/p2p_invalidator.h b/sync/notifier/p2p_invalidator.h
|
| index 952299f6f8674cd25ed4dc33caf99ea2a360ba8d..a56521e09c25249590fc22c8f9a62ebda9222b74 100644
|
| --- a/sync/notifier/p2p_invalidator.h
|
| +++ b/sync/notifier/p2p_invalidator.h
|
| @@ -93,6 +93,7 @@ class SYNC_EXPORT_PRIVATE P2PInvalidator
|
| // to send notifications to all clients except for the one that triggered the
|
| // notification. See crbug.com/97780.
|
| P2PInvalidator(scoped_ptr<notifier::PushClient> push_client,
|
| + const std::string& invalidator_client_id,
|
| P2PNotificationTarget send_notification_target);
|
|
|
| virtual ~P2PInvalidator();
|
| @@ -105,7 +106,6 @@ class SYNC_EXPORT_PRIVATE P2PInvalidator
|
| virtual void Acknowledge(const invalidation::ObjectId& id,
|
| const AckHandle& ack_handle) OVERRIDE;
|
| virtual InvalidatorState GetInvalidatorState() const OVERRIDE;
|
| - virtual void SetUniqueId(const std::string& unique_id) OVERRIDE;
|
| virtual void UpdateCredentials(
|
| const std::string& email, const std::string& token) OVERRIDE;
|
| virtual void SendInvalidation(
|
| @@ -131,7 +131,7 @@ class SYNC_EXPORT_PRIVATE P2PInvalidator
|
| // The push client.
|
| scoped_ptr<notifier::PushClient> push_client_;
|
| // Our unique ID.
|
| - std::string unique_id_;
|
| + std::string invalidator_client_id_;
|
| // Whether we have called UpdateCredentials() yet.
|
| bool logged_in_;
|
| bool notifications_enabled_;
|
|
|