Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Unified Diff: components/rappor/byte_vector_utils.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/query_parser/query_parser.cc ('k') | components/rappor/log_uploader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « components/query_parser/query_parser.cc ('k') | components/rappor/log_uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698