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

Unified Diff: base/hmac.h

Issue 5009: Fix some issues found looking at the code.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 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
Index: base/hmac.h
===================================================================
--- base/hmac.h (revision 2670)
+++ base/hmac.h (working copy)
@@ -11,6 +11,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/scoped_ptr.h"
namespace base {
@@ -34,7 +35,7 @@
private:
HashAlgorithm hash_alg_;
- HMACPlatformData* plat_;
+ scoped_ptr<HMACPlatformData> plat_;
DISALLOW_COPY_AND_ASSIGN(HMAC);
};

Powered by Google App Engine
This is Rietveld 408576698