| Index: chrome/app/android/chrome_main_delegate_android.h
|
| diff --git a/chrome/app/android/chrome_main_delegate_android.h b/chrome/app/android/chrome_main_delegate_android.h
|
| index b268ab1e1c722b46aafe00fa2e204890007d7463..450e53ac1761a8e88f2d51a0dd117cd5ae0aa378 100644
|
| --- a/chrome/app/android/chrome_main_delegate_android.h
|
| +++ b/chrome/app/android/chrome_main_delegate_android.h
|
| @@ -19,13 +19,13 @@ class ChromeMainDelegateAndroid : public ChromeMainDelegate {
|
|
|
| protected:
|
| ChromeMainDelegateAndroid();
|
| - virtual ~ChromeMainDelegateAndroid();
|
| + ~ChromeMainDelegateAndroid() override;
|
|
|
| - virtual bool BasicStartupComplete(int* exit_code) override;
|
| + bool BasicStartupComplete(int* exit_code) override;
|
|
|
| - virtual void SandboxInitialized(const std::string& process_type) override;
|
| + void SandboxInitialized(const std::string& process_type) override;
|
|
|
| - virtual int RunProcess(
|
| + int RunProcess(
|
| const std::string& process_type,
|
| const content::MainFunctionParams& main_function_params) override;
|
|
|
|
|