| Index: mojo/edk/util/waitable_event.h
|
| diff --git a/mojo/edk/util/waitable_event.h b/mojo/edk/util/waitable_event.h
|
| index be64a66e720d6b4a6d8bcd2527e26068a9484954..f12b9c1e4f4f0324532b9ba5ceaf45076a36ba6d 100644
|
| --- a/mojo/edk/util/waitable_event.h
|
| +++ b/mojo/edk/util/waitable_event.h
|
| @@ -25,7 +25,7 @@ namespace util {
|
| // to Windows's auto-reset Event, which is also imitated by Chromium's
|
| // auto-reset |base::WaitableEvent|. However, there are some limitations -- see
|
| // |Signal()|.) This class is thread-safe.
|
| -class AutoResetWaitableEvent {
|
| +class AutoResetWaitableEvent final {
|
| public:
|
| AutoResetWaitableEvent() {}
|
| ~AutoResetWaitableEvent() {}
|
| @@ -77,7 +77,7 @@ class AutoResetWaitableEvent {
|
| // until explicitly reset. (This is similar to Windows's manual-reset Event,
|
| // which is also imitated by Chromium's manual-reset |base::WaitableEvent|.)
|
| // This class is thread-safe.
|
| -class ManualResetWaitableEvent {
|
| +class ManualResetWaitableEvent final {
|
| public:
|
| ManualResetWaitableEvent() {}
|
| ~ManualResetWaitableEvent() {}
|
|
|