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

Unified Diff: sdk/lib/io/security_context.dart

Issue 1660023002: Fix incomplete renaming (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « 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/io/security_context.dart
diff --git a/sdk/lib/io/security_context.dart b/sdk/lib/io/security_context.dart
index 76ca8e654e12314018d8c65a119cb4c0e227b914..4675b60048a0fbaefd2478176f73ff7f4c5cdc4b 100644
--- a/sdk/lib/io/security_context.dart
+++ b/sdk/lib/io/security_context.dart
@@ -56,7 +56,7 @@ abstract class SecurityContext {
* private key, encrypted with [password]. An unencrypted file can be
* used, but this is not usual.
*/
- void usePrivateKeyAsBytes(List<int> keyBytes, {String password});
+ void usePrivateKeyBytes(List<int> keyBytes, {String password});
/**
* Sets the set of trusted X509 certificates used by [SecureSocket]
@@ -101,7 +101,7 @@ abstract class SecurityContext {
* certificate. The private key for the server certificate is set by
* [usePrivateKey].
*/
- void useCertificateChainAsBytes(List<int> chainBytes);
+ void useCertificateChainBytes(List<int> chainBytes);
/**
* Sets the list of authority names that a [SecureServer] will advertise
« 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