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

Unified Diff: content/renderer/webcrypto_impl.h

Issue 19355002: Add chromium side implementation of WebKit::WebCrypto. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase onto master Created 7 years, 5 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 | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/renderer/webcrypto_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..42081c4f185bd459ef4bd3c1e9a5e76875138f3f
--- /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& algorithm) OVERRIDE;
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_WEBCRYPTO_IMPL_H_
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/renderer/webcrypto_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698