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

Unified Diff: Source/modules/crypto/WorkerGlobalScopeCrypto.cpp

Issue 18475002: WebCrypto: Add framework for AlgorithmIdentifier normalization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename verify --> verifySignature (because "verify" is a macro on Mac) Created 7 years, 6 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 | « Source/modules/crypto/SubtleCrypto.idl ('k') | Source/modules/modules.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
diff --git a/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp b/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
index cd7850a8dbacee05f29a2d48202f7a0f3f1f13bb..fa088c6b8d71a6ab16259840e10b5d97da936517 100644
--- a/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
+++ b/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
@@ -49,7 +49,6 @@ const char* WorkerGlobalScopeCrypto::supplementName()
return "WorkerGlobalScopeCrypto";
}
-// static
WorkerGlobalScopeCrypto* WorkerGlobalScopeCrypto::from(ScriptExecutionContext* context)
{
WorkerGlobalScopeCrypto* supplement = static_cast<WorkerGlobalScopeCrypto*>(Supplement<ScriptExecutionContext>::from(context, supplementName()));
@@ -60,7 +59,6 @@ WorkerGlobalScopeCrypto* WorkerGlobalScopeCrypto::from(ScriptExecutionContext* c
return supplement;
}
-// static
WorkerCrypto* WorkerGlobalScopeCrypto::crypto(ScriptExecutionContext* context)
{
return WorkerGlobalScopeCrypto::from(context)->crypto();
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.idl ('k') | Source/modules/modules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698