Index: mojo/shell/out_of_process_dynamic_service_runner.h |
diff --git a/mojo/shell/out_of_process_dynamic_service_runner.h b/mojo/shell/out_of_process_dynamic_service_runner.h |
index 71272e77a627934453b416bad7051d2077b4b09e..94fcd105459476925499ccdbb869bf3d8426dc24 100644 |
--- a/mojo/shell/out_of_process_dynamic_service_runner.h |
+++ b/mojo/shell/out_of_process_dynamic_service_runner.h |
@@ -22,16 +22,16 @@ class OutOfProcessDynamicServiceRunner |
public AppChildControllerClient { |
public: |
explicit OutOfProcessDynamicServiceRunner(Context* context); |
- virtual ~OutOfProcessDynamicServiceRunner(); |
+ ~OutOfProcessDynamicServiceRunner() override; |
// |DynamicServiceRunner| method: |
- virtual void Start(const base::FilePath& app_path, |
- ScopedMessagePipeHandle service_handle, |
- const base::Closure& app_completed_callback) override; |
+ void Start(const base::FilePath& app_path, |
+ ScopedMessagePipeHandle service_handle, |
+ const base::Closure& app_completed_callback) override; |
private: |
// |AppChildControllerClient| method: |
- virtual void AppCompleted(int32_t result) override; |
+ void AppCompleted(int32_t result) override; |
Context* const context_; |