| Index: dbus/bus.cc
|
| diff --git a/dbus/bus.cc b/dbus/bus.cc
|
| index 3cad3c8909d584ab3942472ed5ff9e3360cbb598..e9e77a5dcd4acdcd39d6e3e56e5355c1406409a9 100644
|
| --- a/dbus/bus.cc
|
| +++ b/dbus/bus.cc
|
| @@ -84,13 +84,13 @@ class Watch : public base::MessagePumpLibevent::Watcher {
|
|
|
| private:
|
| // Implement MessagePumpLibevent::Watcher.
|
| - virtual void OnFileCanReadWithoutBlocking(int file_descriptor) OVERRIDE {
|
| + virtual void OnFileCanReadWithoutBlocking(int file_descriptor) override {
|
| const bool success = dbus_watch_handle(raw_watch_, DBUS_WATCH_READABLE);
|
| CHECK(success) << "Unable to allocate memory";
|
| }
|
|
|
| // Implement MessagePumpLibevent::Watcher.
|
| - virtual void OnFileCanWriteWithoutBlocking(int file_descriptor) OVERRIDE {
|
| + virtual void OnFileCanWriteWithoutBlocking(int file_descriptor) override {
|
| const bool success = dbus_watch_handle(raw_watch_, DBUS_WATCH_WRITABLE);
|
| CHECK(success) << "Unable to allocate memory";
|
| }
|
|
|