Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2654)

Unified Diff: chromecast/app/cast_main_delegate.h

Issue 837453003: Chromecast: virtual/override cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed a few spots Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromecast/base/metrics/cast_metrics_test_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | chromecast/base/metrics/cast_metrics_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698