Chromium Code Reviews| Index: content/renderer/webcrypto_impl.h |
| diff --git a/content/renderer/webcrypto_impl.h b/content/renderer/webcrypto_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2f6f31685b547573b71ee4108f25d4bc19c062b0 |
| --- /dev/null |
| +++ b/content/renderer/webcrypto_impl.h |
| @@ -0,0 +1,22 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_RENDERER_WEBCRYPTO_IMPL_H_ |
| +#define CONTENT_RENDERER_WEBCRYPTO_IMPL_H_ |
| + |
| +#include "base/compiler_specific.h" |
| + |
| +#include "third_party/WebKit/public/platform/WebCrypto.h" |
| + |
| +namespace content { |
| + |
| +class WebCryptoImpl : public WebKit::WebCrypto { |
| + public: |
| + virtual WebKit::WebCryptoOperation* digest( |
| + const WebKit::WebCryptoAlgorithm&) OVERRIDE; |
|
jamesr
2013/07/17 00:48:11
this is chromium code, so it should follow chromiu
eroman
2013/07/17 01:23:23
Done.
|
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_RENDERER_WEBCRYPTO_IMPL_H_ |