From 8d0597a81416dfa3a3c6513718f09077cce31039 Mon Sep 17 00:00:00 2001 From: Alex Vakulenko Date: Tue, 13 Oct 2015 16:25:04 -0700 Subject: Fixed missed renames from previous CL daemon.cc has these renamed, but not daemon.h. Not sure how this compiled locally. Change-Id: Ia7efed2764dc1d8580cfa9f16518459ec3732be6 --- brillo/daemons/daemon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brillo/daemons/daemon.h b/brillo/daemons/daemon.h index be9c8ca..e107832 100644 --- a/brillo/daemons/daemon.h +++ b/brillo/daemons/daemon.h @@ -86,7 +86,7 @@ class BRILLO_EXPORT Daemon : public AsynchronousSignalHandlerInterface { // Returns a delegate to Quit() method in the base::RunLoop instance. base::Closure QuitClosure() const { - return chromeos_message_loop_.QuitClosure(); + return brillo_message_loop_.QuitClosure(); } private: @@ -101,7 +101,7 @@ class BRILLO_EXPORT Daemon : public AsynchronousSignalHandlerInterface { // The main message loop for the daemon. base::MessageLoopForIO message_loop_; // The brillo wrapper for the main message loop. - BaseMessageLoop chromeos_message_loop_{&message_loop_}; + BaseMessageLoop brillo_message_loop_{&message_loop_}; // A helper to dispatch signal handlers asynchronously, so that the main // system signal handler returns as soon as possible. AsynchronousSignalHandler async_signal_handler_; -- cgit v1.2.3