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

Unified Diff: ash/shell/content_client/shell_browser_main_parts.h

Issue 679283002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: ash/shell/content_client/shell_browser_main_parts.h
diff --git a/ash/shell/content_client/shell_browser_main_parts.h b/ash/shell/content_client/shell_browser_main_parts.h
index 757c818fc372033837d210c92456e2eb6b57f3d0..89684315c50dd297913f874bc9d1850a028ca004 100644
--- a/ash/shell/content_client/shell_browser_main_parts.h
+++ b/ash/shell/content_client/shell_browser_main_parts.h
@@ -36,15 +36,15 @@ class ShellBrowserMainParts : public content::BrowserMainParts {
public:
explicit ShellBrowserMainParts(
const content::MainFunctionParams& parameters);
- virtual ~ShellBrowserMainParts();
+ ~ShellBrowserMainParts() override;
// Overridden from content::BrowserMainParts:
- virtual void PreMainMessageLoopStart() override;
- virtual void PostMainMessageLoopStart() override;
- virtual void ToolkitInitialized() override;
- virtual void PreMainMessageLoopRun() override;
- virtual bool MainMessageLoopRun(int* result_code) override;
- virtual void PostMainMessageLoopRun() override;
+ void PreMainMessageLoopStart() override;
+ void PostMainMessageLoopStart() override;
+ void ToolkitInitialized() override;
+ void PreMainMessageLoopRun() override;
+ bool MainMessageLoopRun(int* result_code) override;
+ void PostMainMessageLoopRun() override;
content::ShellBrowserContext* browser_context() {
return browser_context_.get();

Powered by Google App Engine
This is Rietveld 408576698