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

Unified Diff: ash/system/chromeos/tray_tracing.cc

Issue 800983006: Update {virtual,override,final} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: ash/system/chromeos/tray_tracing.cc
diff --git a/ash/system/chromeos/tray_tracing.cc b/ash/system/chromeos/tray_tracing.cc
index 279bea9f8637eb78e2253c806a2bd705bea7b172..b74bc5ae93fce20c8c7a65a7ba54d736832fb48a 100644
--- a/ash/system/chromeos/tray_tracing.cc
+++ b/ash/system/chromeos/tray_tracing.cc
@@ -43,11 +43,11 @@ class DefaultTracingView : public ActionableView {
AddChildView(label_);
}
- virtual ~DefaultTracingView() {}
+ ~DefaultTracingView() override {}
private:
// Overridden from ActionableView.
- virtual bool PerformAction(const ui::Event& event) override {
+ bool PerformAction(const ui::Event& event) override {
Shell::GetInstance()->system_tray_delegate()->ShowChromeSlow();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698