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

Unified Diff: Source/modules/crypto/DOMWindowCrypto.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/CryptoOperation.idl ('k') | Source/modules/crypto/NormalizeAlgorithm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/DOMWindowCrypto.cpp
diff --git a/Source/modules/crypto/DOMWindowCrypto.cpp b/Source/modules/crypto/DOMWindowCrypto.cpp
index 237c298876451ce2a910a4969e8e153aaa23ff93..d3ab1eed83832658e666b0b9baec53f8c49e7213 100644
--- a/Source/modules/crypto/DOMWindowCrypto.cpp
+++ b/Source/modules/crypto/DOMWindowCrypto.cpp
@@ -51,7 +51,6 @@ const char* DOMWindowCrypto::supplementName()
return "DOMWindowCrypto";
}
-// static
DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window)
{
DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWindow>::from(window, supplementName()));
@@ -62,7 +61,6 @@ DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window)
return supplement;
}
-// static
Crypto* DOMWindowCrypto::crypto(DOMWindow* window)
{
return DOMWindowCrypto::from(window)->crypto();
« no previous file with comments | « Source/modules/crypto/CryptoOperation.idl ('k') | Source/modules/crypto/NormalizeAlgorithm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698