| Index: chromecast/app/cast_main_delegate.h
|
| diff --git a/chromecast/app/cast_main_delegate.h b/chromecast/app/cast_main_delegate.h
|
| index d078655f69de8703e0dd5e99c2240c551489ac2b..0fe77690126b78654bfb94ce4ebe9642fc2396b9 100644
|
| --- a/chromecast/app/cast_main_delegate.h
|
| +++ b/chromecast/app/cast_main_delegate.h
|
| @@ -26,20 +26,19 @@ class CastContentRendererClient;
|
| class CastMainDelegate : public content::ContentMainDelegate {
|
| public:
|
| CastMainDelegate();
|
| - virtual ~CastMainDelegate();
|
| + ~CastMainDelegate() override;
|
|
|
| // content::ContentMainDelegate implementation:
|
| - virtual bool BasicStartupComplete(int* exit_code) override;
|
| - virtual void PreSandboxStartup() override;
|
| - virtual int RunProcess(
|
| + bool BasicStartupComplete(int* exit_code) override;
|
| + void PreSandboxStartup() override;
|
| + int RunProcess(
|
| const std::string& process_type,
|
| const content::MainFunctionParams& main_function_params) override;
|
| #if !defined(OS_ANDROID)
|
| - virtual void ZygoteForked() override;
|
| + void ZygoteForked() override;
|
| #endif // !defined(OS_ANDROID)
|
| - virtual content::ContentBrowserClient* CreateContentBrowserClient() override;
|
| - virtual content::ContentRendererClient*
|
| - CreateContentRendererClient() override;
|
| + content::ContentBrowserClient* CreateContentBrowserClient() override;
|
| + content::ContentRendererClient* CreateContentRendererClient() override;
|
|
|
| private:
|
| void InitializeResourceBundle();
|
|
|