summaryrefslogtreecommitdiffstats
path: root/crypto/scoped_capi_types.h
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-26 20:29:57 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-26 20:29:57 +0000
commitdedde4ad4122d91d59e0ae862e616aba9620b393 (patch)
tree7b18f4267b36e087d3a206e2125ab82891ed993e /crypto/scoped_capi_types.h
parentdb1156813ca4e0c82a36bb1ded160f00f579b1c6 (diff)
downloadchromium_src-dedde4ad4122d91d59e0ae862e616aba9620b393.zip
chromium_src-dedde4ad4122d91d59e0ae862e616aba9620b393.tar.gz
chromium_src-dedde4ad4122d91d59e0ae862e616aba9620b393.tar.bz2
Convert scoped_ptr_malloc -> scoped_ptr, part 2.
scoped_ptr_malloc is deprecated; let's get rid of it. BUG=344245 R=brettw@chromium.org TBR=rsleevi@chromium.org,miket@chromium.org,ryanmyers@chromium.org,dalecurtis@chromium.org, cpu@chromium.org Review URL: https://codereview.chromium.org/169193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253582 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/scoped_capi_types.h')
-rw-r--r--crypto/scoped_capi_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/scoped_capi_types.h b/crypto/scoped_capi_types.h
index 16a5192..9ab28d9 100644
--- a/crypto/scoped_capi_types.h
+++ b/crypto/scoped_capi_types.h
@@ -42,8 +42,8 @@ struct CAPIDestroyerWithFlags {
// scoped_ptr-like class for the CryptoAPI cryptography and certificate
// handles. Because these handles are defined as integer types, and not
-// pointers, the existing scoped classes, such as scoped_ptr_malloc, are
-// insufficient. The semantics are the same as scoped_ptr.
+// pointers, the existing scoped classes, such as scoped_ptr, are insufficient.
+// The semantics are the same as scoped_ptr.
template <class CAPIHandle, typename FreeProc>
class ScopedCAPIHandle {
public: