| Index: components/rappor/byte_vector_utils.h
|
| diff --git a/components/rappor/byte_vector_utils.h b/components/rappor/byte_vector_utils.h
|
| index a3f5f06e04ab07377af27b556e4b43dbbf646a10..3090d9bc76f5d33bac0d0100600b387477fd4775 100644
|
| --- a/components/rappor/byte_vector_utils.h
|
| +++ b/components/rappor/byte_vector_utils.h
|
| @@ -80,7 +80,7 @@ class HmacByteVectorGenerator : public ByteVectorGenerator {
|
| const std::string& entropy_input,
|
| const std::string& personalization_string);
|
|
|
| - virtual ~HmacByteVectorGenerator();
|
| + ~HmacByteVectorGenerator() override;
|
|
|
| // Generates a random string suitable for passing to the constructor as
|
| // |entropy_input|.
|
| @@ -95,7 +95,7 @@ class HmacByteVectorGenerator : public ByteVectorGenerator {
|
| explicit HmacByteVectorGenerator(const HmacByteVectorGenerator& prev_request);
|
|
|
| // ByteVector implementation:
|
| - virtual ByteVector GetRandomByteVector() override;
|
| + ByteVector GetRandomByteVector() override;
|
|
|
| private:
|
| // HMAC initalized with the value of "Key" HMAC_DRBG_Initialize.
|
|
|