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

Unified Diff: ash/test/test_shell_delegate.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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
« no previous file with comments | « ash/test/test_shell_delegate.h ('k') | ash/test/test_suite.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/test_shell_delegate.cc
diff --git a/ash/test/test_shell_delegate.cc b/ash/test/test_shell_delegate.cc
index 1d951888adc3958d3dccf947a01b1b71dc38a044..d8f39d6446498febe346fe7455760279231a7bec 100644
--- a/ash/test/test_shell_delegate.cc
+++ b/ash/test/test_shell_delegate.cc
@@ -42,14 +42,14 @@ class NewWindowDelegateImpl : public NewWindowDelegate {
private:
// NewWindowDelegate:
- virtual void NewTab() OVERRIDE {}
- virtual void NewWindow(bool incognito) OVERRIDE {}
- virtual void OpenFileManager() OVERRIDE {}
- virtual void OpenCrosh() OVERRIDE {}
- virtual void RestoreTab() OVERRIDE {}
- virtual void ShowKeyboardOverlay() OVERRIDE {}
- virtual void ShowTaskManager() OVERRIDE {}
- virtual void OpenFeedbackPage() OVERRIDE {}
+ virtual void NewTab() override {}
+ virtual void NewWindow(bool incognito) override {}
+ virtual void OpenFileManager() override {}
+ virtual void OpenCrosh() override {}
+ virtual void RestoreTab() override {}
+ virtual void ShowKeyboardOverlay() override {}
+ virtual void ShowTaskManager() override {}
+ virtual void OpenFeedbackPage() override {}
DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl);
};
@@ -63,11 +63,11 @@ class MediaDelegateImpl : public MediaDelegate {
private:
// MediaDelegate:
- virtual void HandleMediaNextTrack() OVERRIDE {}
- virtual void HandleMediaPlayPause() OVERRIDE {}
- virtual void HandleMediaPrevTrack() OVERRIDE {}
+ virtual void HandleMediaNextTrack() override {}
+ virtual void HandleMediaPlayPause() override {}
+ virtual void HandleMediaPrevTrack() override {}
virtual MediaCaptureState GetMediaCaptureState(
- content::BrowserContext* context) OVERRIDE {
+ content::BrowserContext* context) override {
return state_;
}
« no previous file with comments | « ash/test/test_shell_delegate.h ('k') | ash/test/test_suite.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698