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

Unified Diff: chrome/browser/ui/webui/chromeos/touch_view_controller_delegate.h

Issue 854063002: Update {virtual,override,final} to follow C++11 style chrome/browser/ui/webui/chromeos. (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
« no previous file with comments | « chrome/browser/ui/webui/chromeos/slow_ui.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chromeos/touch_view_controller_delegate.h
diff --git a/chrome/browser/ui/webui/chromeos/touch_view_controller_delegate.h b/chrome/browser/ui/webui/chromeos/touch_view_controller_delegate.h
index a5f1d4fdddc99fc3cdfd33392c3da8ffc20d4de7..e0497c494f4c5ffbf07d1d816c035e0b5a721bde 100644
--- a/chrome/browser/ui/webui/chromeos/touch_view_controller_delegate.h
+++ b/chrome/browser/ui/webui/chromeos/touch_view_controller_delegate.h
@@ -26,7 +26,7 @@ class TouchViewControllerDelegate : public ash::ShellObserver {
};
TouchViewControllerDelegate();
- virtual ~TouchViewControllerDelegate();
+ ~TouchViewControllerDelegate() override;
// Add/Remove observers.
void AddObserver(Observer* observer);
@@ -38,8 +38,8 @@ class TouchViewControllerDelegate : public ash::ShellObserver {
private:
// ash::ShellObserver implementation:
- virtual void OnMaximizeModeStarted() override;
- virtual void OnMaximizeModeEnded() override;
+ void OnMaximizeModeStarted() override;
+ void OnMaximizeModeEnded() override;
// Mode state change observers.
ObserverList<Observer> observers_;
« no previous file with comments | « chrome/browser/ui/webui/chromeos/slow_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698