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

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

Issue 11419032: Switch libraries to using new tags. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated to tip of tree. Changed library names to dart.x Created 8 years 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 | « sdk/lib/core/type.dart ('k') | sdk/lib/crypto/crypto_utils.dart » ('j') | 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 078b21dc93d9bf0f72770bf627001193866dba61..ea4e8fee6af1daaf42627e4468205c0c3698bd06 100644
--- a/sdk/lib/crypto/crypto.dart
+++ b/sdk/lib/crypto/crypto.dart
@@ -2,16 +2,16 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#library('dart:crypto');
+library dart.crypto;
-#import('dart:math');
+import 'dart:math';
-#source('crypto_utils.dart');
-#source('hash_utils.dart');
-#source('hmac.dart');
-#source('md5.dart');
-#source('sha1.dart');
-#source('sha256.dart');
+part 'crypto_utils.dart';
+part 'hash_utils.dart';
+part 'hmac.dart';
+part 'md5.dart';
+part 'sha1.dart';
+part 'sha256.dart';
/**
* Interface for cryptographic hash functions.
« no previous file with comments | « sdk/lib/core/type.dart ('k') | sdk/lib/crypto/crypto_utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698