| Index: components/invalidation/mock_ack_handler.h
|
| diff --git a/components/invalidation/mock_ack_handler.h b/components/invalidation/mock_ack_handler.h
|
| index ea4e6226363d6f2ab714945f7a7b003a3be0e038..8afcb4fa8d01de4fa0a151aaa349023123eb0e7d 100644
|
| --- a/components/invalidation/mock_ack_handler.h
|
| +++ b/components/invalidation/mock_ack_handler.h
|
| @@ -25,7 +25,7 @@ class INVALIDATION_EXPORT MockAckHandler
|
| public base::SupportsWeakPtr<MockAckHandler> {
|
| public:
|
| MockAckHandler();
|
| - virtual ~MockAckHandler();
|
| + ~MockAckHandler() override;
|
|
|
| // Sets up some internal state to track this invalidation, and modifies it so
|
| // that its Acknowledge() and Drop() methods will route back to us.
|
| @@ -54,12 +54,9 @@ class INVALIDATION_EXPORT MockAckHandler
|
| bool AllInvalidationsAccountedFor() const;
|
|
|
| // Implementation of AckHandler.
|
| - virtual void Acknowledge(
|
| - const invalidation::ObjectId& id,
|
| - const AckHandle& handle) override;
|
| - virtual void Drop(
|
| - const invalidation::ObjectId& id,
|
| - const AckHandle& handle) override;
|
| + void Acknowledge(const invalidation::ObjectId& id,
|
| + const AckHandle& handle) override;
|
| + void Drop(const invalidation::ObjectId& id, const AckHandle& handle) override;
|
|
|
| private:
|
| typedef std::vector<syncer::Invalidation> InvalidationVector;
|
|
|