| Index: services/media/factory_service/event.h
|
| diff --git a/services/media/factory_service/event.h b/services/media/factory_service/event.h
|
| index b79630f9ea35bc2dd390157daa9dcb0fe542fc5f..bc2b01e1615cac18b1527def23dc7c1e8c9ff177 100644
|
| --- a/services/media/factory_service/event.h
|
| +++ b/services/media/factory_service/event.h
|
| @@ -121,9 +121,7 @@ class Event {
|
| }
|
|
|
| // Determines whether this Event is non-null.
|
| - explicit operator bool() const {
|
| - return static_cast<bool>(impl_);
|
| - }
|
| + explicit operator bool() const { return static_cast<bool>(impl_); }
|
|
|
| // Executes the consequence when this Event occurs. If this Event hasn't
|
| // occurred or been cancelled when this method is called, a copy of the
|
| @@ -151,9 +149,7 @@ class Event {
|
|
|
| // Calls Occur. This method makes an Event convertible to
|
| // mojo::Callback<void()>.
|
| - void Run() const {
|
| - Occur();
|
| - }
|
| + void Run() const { Occur(); }
|
|
|
| private:
|
| explicit Event(const std::shared_ptr<EventImpl>& impl);
|
|
|