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

Unified Diff: components/web_modal/web_contents_modal_dialog_manager_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/web_modal/web_contents_modal_dialog_manager_unittest.cc
diff --git a/components/web_modal/web_contents_modal_dialog_manager_unittest.cc b/components/web_modal/web_contents_modal_dialog_manager_unittest.cc
index 557df7bce934ee1d9cdc3b98ed398fce68ff49b1..e0a1e80dc92719bb51ba942e3e79f4df460b17a2 100644
--- a/components/web_modal/web_contents_modal_dialog_manager_unittest.cc
+++ b/components/web_modal/web_contents_modal_dialog_manager_unittest.cc
@@ -53,26 +53,26 @@ class TestNativeWebContentsModalDialogManager
tracker_->SetState(NativeManagerTracker::NOT_SHOWN);
}
- virtual void Show() OVERRIDE {
+ virtual void Show() override {
if (tracker_)
tracker_->SetState(NativeManagerTracker::SHOWN);
}
- virtual void Hide() OVERRIDE {
+ virtual void Hide() override {
if (tracker_)
tracker_->SetState(NativeManagerTracker::HIDDEN);
}
- virtual void Close() OVERRIDE {
+ virtual void Close() override {
if (tracker_)
tracker_->SetState(NativeManagerTracker::CLOSED);
delegate_->WillClose(dialog_);
}
- virtual void Focus() OVERRIDE {
+ virtual void Focus() override {
}
- virtual void Pulse() OVERRIDE {
+ virtual void Pulse() override {
}
- virtual void HostChanged(WebContentsModalDialogHost* new_host) OVERRIDE {
+ virtual void HostChanged(WebContentsModalDialogHost* new_host) override {
}
- virtual NativeWebContentsModalDialog dialog() OVERRIDE {
+ virtual NativeWebContentsModalDialog dialog() override {
return dialog_;
}
« no previous file with comments | « components/web_modal/web_contents_modal_dialog_manager.h ('k') | components/webdata/common/web_data_results.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698