summaryrefslogtreecommitdiffstats
path: root/crypto/secure_hash_default.cc
diff options
context:
space:
mode:
authoranujk.sharma <anujk.sharma@samsung.com>2014-10-06 21:07:19 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 04:07:35 +0000
commitd1c2d2ad303bda1c49d453b460d6bbacf80240ca (patch)
tree1f6ea33f98866cf92563677dc7790adaeea8ba45 /crypto/secure_hash_default.cc
parente2ad39810286fb0ade966265cff4cfad931c4632 (diff)
downloadchromium_src-d1c2d2ad303bda1c49d453b460d6bbacf80240ca.zip
chromium_src-d1c2d2ad303bda1c49d453b460d6bbacf80240ca.tar.gz
chromium_src-d1c2d2ad303bda1c49d453b460d6bbacf80240ca.tar.bz2
Replacing the OVERRIDE with override and FINAL with final in /src/crypto
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/632653002 Cr-Commit-Position: refs/heads/master@{#298360}
Diffstat (limited to 'crypto/secure_hash_default.cc')
-rw-r--r--crypto/secure_hash_default.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/secure_hash_default.cc b/crypto/secure_hash_default.cc
index 7b912e1..1f5e59b 100644
--- a/crypto/secure_hash_default.cc
+++ b/crypto/secure_hash_default.cc
@@ -28,17 +28,17 @@ class SecureHashSHA256NSS : public SecureHash {
}
// SecureHash implementation:
- virtual void Update(const void* input, size_t len) OVERRIDE {
+ virtual void Update(const void* input, size_t len) override {
SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
}
- virtual void Finish(void* output, size_t len) OVERRIDE {
+ virtual void Finish(void* output, size_t len) override {
SHA256_End(&ctx_, static_cast<unsigned char*>(output), NULL,
static_cast<unsigned int>(len));
}
- virtual bool Serialize(Pickle* pickle) OVERRIDE;
- virtual bool Deserialize(PickleIterator* data_iterator) OVERRIDE;
+ virtual bool Serialize(Pickle* pickle) override;
+ virtual bool Deserialize(PickleIterator* data_iterator) override;
private:
SHA256Context ctx_;