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

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

Issue 1694413003: Cleanups in the Mojo package. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Address comments. Created 4 years, 10 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 | mojo/dart/packages/mojo/lib/src/buffer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
}
« no previous file with comments | « no previous file | mojo/dart/packages/mojo/lib/src/buffer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698