| Index: mojo/dart/embedder/io/mojo_patch.dart
|
| diff --git a/mojo/dart/embedder/io/mojo_patch.dart b/mojo/dart/embedder/io/mojo_patch.dart
|
| index 1a48f01565834e724c7f2e017198088e75d5d1ac..eb22b160cac4dd67267c5669bc62ec26fe7d5ce3 100644
|
| --- a/mojo/dart/embedder/io/mojo_patch.dart
|
| +++ b/mojo/dart/embedder/io/mojo_patch.dart
|
| @@ -39,10 +39,10 @@ DirectoryProxy _rootDirectory;
|
| DirectoryProxy _systemTempDirectory;
|
|
|
| void _initialize(int networkServiceHandle, int filesServiceHandle) {
|
| - if (networkServiceHandle != MojoHandle.INVALID) {
|
| + if (networkServiceHandle != MojoHandle.invalidHandle) {
|
| _networkServiceHandle = networkServiceHandle;
|
| }
|
| - if (filesServiceHandle != MojoHandle.INVALID) {
|
| + if (filesServiceHandle != MojoHandle.invalidHandle) {
|
| _filesServiceHandle = filesServiceHandle;
|
| }
|
| }
|
|
|