| Index: mojo/public/python/src/python_system_helper.cc
|
| diff --git a/mojo/public/python/src/python_system_helper.cc b/mojo/public/python/src/python_system_helper.cc
|
| index 50b5fb01877eba193dae3f65f69e2cd44ac370f2..22b6bbb4a5d47eff3e459168b387df4e58b3ddf9 100644
|
| --- a/mojo/public/python/src/python_system_helper.cc
|
| +++ b/mojo/public/python/src/python_system_helper.cc
|
| @@ -57,7 +57,7 @@ class PythonClosure : public mojo::Closure::Runnable {
|
| MOJO_DCHECK(callable);
|
| }
|
|
|
| - virtual void Run() const override {
|
| + void Run() const override {
|
| ScopedGIL acquire_gil;
|
| ScopedPyRef empty_tuple(PyTuple_New(0));
|
| if (!empty_tuple) {
|
| @@ -101,7 +101,7 @@ class PythonAsyncWaiter::AsyncWaiterRunnable
|
|
|
| void set_wait_id(int wait_id) { wait_id_ = wait_id; }
|
|
|
| - virtual void Run(MojoResult mojo_result) const override {
|
| + void Run(MojoResult mojo_result) const override {
|
| MOJO_DCHECK(wait_id_);
|
|
|
| // Remove to reference to this object from PythonAsyncWaiter and ensure this
|
|
|