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

Unified Diff: content/shell/browser/layout_test/layout_test_devtools_frontend.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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: content/shell/browser/layout_test/layout_test_devtools_frontend.h
diff --git a/content/shell/browser/layout_test/layout_test_devtools_frontend.h b/content/shell/browser/layout_test/layout_test_devtools_frontend.h
index 3c6cb1cdfb1e61ccee8235907ad73fd1c0c6cf24..5106a9beca7bbd5bbe750c4ee557db0c5e13e2cb 100644
--- a/content/shell/browser/layout_test/layout_test_devtools_frontend.h
+++ b/content/shell/browser/layout_test/layout_test_devtools_frontend.h
@@ -27,10 +27,10 @@ class LayoutTestDevToolsFrontend : public ShellDevToolsFrontend {
private:
LayoutTestDevToolsFrontend(Shell* frontend_shell,
DevToolsAgentHost* agent_host);
- virtual ~LayoutTestDevToolsFrontend();
+ ~LayoutTestDevToolsFrontend() override;
// WebContentsObserver implementation.
- virtual void RenderProcessGone(base::TerminationStatus status) override;
+ void RenderProcessGone(base::TerminationStatus status) override;
DISALLOW_COPY_AND_ASSIGN(LayoutTestDevToolsFrontend);
};

Powered by Google App Engine
This is Rietveld 408576698