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

Unified Diff: chrome/browser/ui/views/validation_message_bubble_view.cc

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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: chrome/browser/ui/views/validation_message_bubble_view.cc
diff --git a/chrome/browser/ui/views/validation_message_bubble_view.cc b/chrome/browser/ui/views/validation_message_bubble_view.cc
index fa853a0b1be7b94632d85d519a1ec7fe462bca6a..a567babca5f38f843b47f371f66603a8debadfb0 100644
--- a/chrome/browser/ui/views/validation_message_bubble_view.cc
+++ b/chrome/browser/ui/views/validation_message_bubble_view.cc
@@ -29,7 +29,7 @@ class ValidationMessageBubbleImpl
virtual void SetPositionRelativeToAnchor(
content::RenderWidgetHost* widget_host,
- const gfx::Rect& anchor_in_root_view) OVERRIDE {
+ const gfx::Rect& anchor_in_root_view) override {
if (!delegate_)
return;
delegate_->SetPositionRelativeToAnchor(anchor_in_root_view +
@@ -37,7 +37,7 @@ class ValidationMessageBubbleImpl
}
// ValidationMessageBubbleDelegate::Observer override:
- virtual void WindowClosing() OVERRIDE {
+ virtual void WindowClosing() override {
delegate_ = NULL;
}

Powered by Google App Engine
This is Rietveld 408576698