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

Unified Diff: mojo/dart/embedder/io/internet_address_patch.dart

Issue 1529423002: Dart: Fix conversion of identifiers to lowerCamelCase. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Comments Created 5 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 | « examples/dart/netcat/lib/main.dart ('k') | mojo/dart/embedder/io/mojo_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/dart/embedder/io/internet_address_patch.dart
diff --git a/mojo/dart/embedder/io/internet_address_patch.dart b/mojo/dart/embedder/io/internet_address_patch.dart
index 527bb28aa9286f53e719476bf64bbb6d0fad5f69..3723bbc6c1d19e659fe2d4995569ae0aa7e1cb6b 100644
--- a/mojo/dart/embedder/io/internet_address_patch.dart
+++ b/mojo/dart/embedder/io/internet_address_patch.dart
@@ -188,9 +188,9 @@ NetAddressFamily _internetAddressTypeToAddressFamily(InternetAddressType type) {
return NetAddressFamily.unspecified;
}
if (type == InternetAddressType.IP_V4) {
- return NetAddressFamily.ipV4;
+ return NetAddressFamily.ipv4;
} else if (type == InternetAddressType.IP_V6) {
- return NetAddressFamily.ipV6;
+ return NetAddressFamily.ipv6;
}
return NetAddressFamily.unspecified;
}
« no previous file with comments | « examples/dart/netcat/lib/main.dart ('k') | mojo/dart/embedder/io/mojo_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698