| Index: components/webcrypto/platform_crypto.h
 | 
| diff --git a/components/webcrypto/platform_crypto.h b/components/webcrypto/platform_crypto.h
 | 
| index b9976670f19942b32aa4dbe8a27f8a13badfc9dd..600daa43c61515dc7fd7a27de155dd24f8cec5e4 100644
 | 
| --- a/components/webcrypto/platform_crypto.h
 | 
| +++ b/components/webcrypto/platform_crypto.h
 | 
| @@ -11,7 +11,7 @@
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "third_party/WebKit/public/platform/WebCrypto.h"
 | 
|  
 | 
| -// The definitions for these methods live in openssl/
 | 
| +// The definitions for these methods live in the algorithms/ directory.
 | 
|  namespace webcrypto {
 | 
|  
 | 
|  class AlgorithmImplementation;
 | 
| @@ -21,6 +21,9 @@ void PlatformInit();
 | 
|  scoped_ptr<blink::WebCryptoDigestor> CreatePlatformDigestor(
 | 
|      blink::WebCryptoAlgorithmId algorithm);
 | 
|  
 | 
| +// TODO(eroman): Return scoped_ptr.
 | 
| +// TODO(eroman): Stop calling this "platform" now that BoringSSL is the only
 | 
| +// implementation.
 | 
|  AlgorithmImplementation* CreatePlatformShaImplementation();
 | 
|  AlgorithmImplementation* CreatePlatformAesCbcImplementation();
 | 
|  AlgorithmImplementation* CreatePlatformAesCtrImplementation();
 | 
| 
 |