summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Vakulenko <avakulenko@google.com>2015-10-13 16:25:04 -0700
committerAlex Vakulenko <avakulenko@google.com>2015-10-13 16:25:04 -0700
commit8d0597a81416dfa3a3c6513718f09077cce31039 (patch)
tree68d16751554154badf0e514506b96317d0113533
parent9ed0cab99f18acb3570a35e9408f24355f6b8324 (diff)
downloadlibchromeos-8d0597a81416dfa3a3c6513718f09077cce31039.tar.gz
Fixed missed renames from previous CL
daemon.cc has these renamed, but not daemon.h. Not sure how this compiled locally. Change-Id: Ia7efed2764dc1d8580cfa9f16518459ec3732be6
-rw-r--r--brillo/daemons/daemon.h4
1 files 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_;