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

Unified Diff: runtime/bin/socket_patch.dart

Issue 2910853002: [Fuchsia] EventHandler: epoll -> ports v2 (Closed)
Patch Set: Address comments Created 3 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
« runtime/bin/eventhandler_fuchsia.cc ('K') | « runtime/bin/socket_fuchsia.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket_patch.dart
diff --git a/runtime/bin/socket_patch.dart b/runtime/bin/socket_patch.dart
index bbfceb8687e1b481dc7388dfd0dee6ee59bd8540..eea3017090b8a8e89c2abedd55d7f5d393a7a6da 100644
--- a/runtime/bin/socket_patch.dart
+++ b/runtime/bin/socket_patch.dart
@@ -1204,7 +1204,7 @@ class _RawSocket extends Stream<RawSocketEvent> implements RawSocket {
write: () {
// The write event handler is automatically disabled by the
// event handler when it fires.
- _writeEventsEnabled = false;
+ writeEventsEnabled = false;
_controller.add(RawSocketEvent.WRITE);
},
closed: () => _controller.add(RawSocketEvent.READ_CLOSED),
@@ -1700,7 +1700,7 @@ class _RawDatagramSocket extends Stream implements RawDatagramSocket {
write: () {
// The write event handler is automatically disabled by the
// event handler when it fires.
- _writeEventsEnabled = false;
+ writeEventsEnabled = false;
_controller.add(RawSocketEvent.WRITE);
},
closed: () => _controller.add(RawSocketEvent.READ_CLOSED),
« runtime/bin/eventhandler_fuchsia.cc ('K') | « runtime/bin/socket_fuchsia.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698