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

Unified Diff: mojo/shell/incoming_connection_listener_posix.cc

Issue 694413003: Add mojo_launcher (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Minor cleanup Created 6 years, 1 month 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
Index: mojo/shell/incoming_connection_listener_posix.cc
diff --git a/mojo/shell/incoming_connection_listener_posix.cc b/mojo/shell/incoming_connection_listener_posix.cc
index 9170eb2142236a0c2671ca205d580965b6748be8..cf70d0db1d5069ac371a45d8ad1f9d2deb053297 100644
--- a/mojo/shell/incoming_connection_listener_posix.cc
+++ b/mojo/shell/incoming_connection_listener_posix.cc
@@ -48,7 +48,7 @@ void IncomingConnectionListenerPosix::StartListening() {
int rv = net::OK;
if (!base::DirectoryExists(socket_path_.DirName())) {
- LOG(ERROR) << "Directorty for listening socket does not exist.";
+ LOG(ERROR) << "Directory for listening socket does not exist.";
rv = net::ERR_FILE_NOT_FOUND;
} else if (!base::PathIsWritable(socket_path_.DirName())) {
LOG(ERROR) << "Listening socket file path is not writable.";
« mojo/shell/BUILD.gn ('K') | « mojo/shell/BUILD.gn ('k') | mojo/shell/launcher_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698