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

Unified Diff: crypto/hmac.cc

Issue 2230873002: crypto: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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 | « no previous file | crypto/nss_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/hmac.cc
diff --git a/crypto/hmac.cc b/crypto/hmac.cc
index fa91628e33bac62c94a2247b6ddad327a785ed8d..b4dd6cf106cbd01f67661320c097426062eed57a 100644
--- a/crypto/hmac.cc
+++ b/crypto/hmac.cc
@@ -25,7 +25,7 @@ HMAC::HMAC(HashAlgorithm hash_alg) : hash_alg_(hash_alg), initialized_(false) {
HMAC::~HMAC() {
// Zero out key copy.
key_.assign(key_.size(), 0);
- STLClearObject(&key_);
+ base::STLClearObject(&key_);
}
size_t HMAC::DigestLength() const {
« no previous file with comments | « no previous file | crypto/nss_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698