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

Unified Diff: sdk/lib/crypto/crypto.dart

Issue 11410064: Correctly pass constructor arguments to _HMAC. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/crypto/crypto.dart
diff --git a/sdk/lib/crypto/crypto.dart b/sdk/lib/crypto/crypto.dart
index c8f9a0f5a9e724e5ce7ce4e37fc24b31cd9306ae..1064ca01a40e0686d092aa7d146fae629dc0fb0a 100644
--- a/sdk/lib/crypto/crypto.dart
+++ b/sdk/lib/crypto/crypto.dart
@@ -83,7 +83,7 @@ abstract class HMAC {
/**
* Create an [HMAC] object from a [Hash] and a key.
*/
- factory HMAC(Hash hash, List<int> key) => new _HMAC();
+ factory HMAC(Hash hash, List<int> key) => new _HMAC(hash, key);
/**
* Add a list of bytes to the message.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698