summaryrefslogtreecommitdiffstats
path: root/crypto/ec_signature_creator_impl.h
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/ec_signature_creator_impl.h
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/ec_signature_creator_impl.h')
-rw-r--r--crypto/ec_signature_creator_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ec_signature_creator_impl.h b/crypto/ec_signature_creator_impl.h
index 8ef67cd..f2ef9d6 100644
--- a/crypto/ec_signature_creator_impl.h
+++ b/crypto/ec_signature_creator_impl.h
@@ -17,10 +17,10 @@ class ECSignatureCreatorImpl : public ECSignatureCreator {
virtual bool Sign(const uint8* data,
int data_len,
- std::vector<uint8>* signature) OVERRIDE;
+ std::vector<uint8>* signature) override;
virtual bool DecodeSignature(const std::vector<uint8>& der_sig,
- std::vector<uint8>* out_raw_sig) OVERRIDE;
+ std::vector<uint8>* out_raw_sig) override;
private:
ECPrivateKey* key_;