| Index: content/shell/app/shell_main_delegate.h
|
| diff --git a/content/shell/app/shell_main_delegate.h b/content/shell/app/shell_main_delegate.h
|
| index 7205ce2848e9fdd99a73d9b4496a19012cddf5d9..baa19e9199cd929ea9ade62a140b88dc01ae7637 100644
|
| --- a/content/shell/app/shell_main_delegate.h
|
| +++ b/content/shell/app/shell_main_delegate.h
|
| @@ -21,19 +21,18 @@ class BrowserMainRunner;
|
| class ShellMainDelegate : public ContentMainDelegate {
|
| public:
|
| ShellMainDelegate();
|
| - virtual ~ShellMainDelegate();
|
| + ~ShellMainDelegate() override;
|
|
|
| // ContentMainDelegate implementation:
|
| - virtual bool BasicStartupComplete(int* exit_code) override;
|
| - virtual void PreSandboxStartup() override;
|
| - virtual int RunProcess(
|
| - const std::string& process_type,
|
| - const MainFunctionParams& main_function_params) override;
|
| + bool BasicStartupComplete(int* exit_code) override;
|
| + void PreSandboxStartup() override;
|
| + int RunProcess(const std::string& process_type,
|
| + const MainFunctionParams& main_function_params) override;
|
| #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX)
|
| virtual void ZygoteForked() override;
|
| #endif
|
| - virtual ContentBrowserClient* CreateContentBrowserClient() override;
|
| - virtual ContentRendererClient* CreateContentRendererClient() override;
|
| + ContentBrowserClient* CreateContentBrowserClient() override;
|
| + ContentRendererClient* CreateContentRendererClient() override;
|
|
|
| static void InitializeResourceBundle();
|
|
|
|
|