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

Unified Diff: chrome/browser/chromeos/ui/kiosk_external_update_notification.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/ui/kiosk_external_update_notification.cc
diff --git a/chrome/browser/chromeos/ui/kiosk_external_update_notification.cc b/chrome/browser/chromeos/ui/kiosk_external_update_notification.cc
index 32c96d4443c40928581c23372818d2baf3149c6f..71d4fdf9c7f9482070f10a19d0b527356a722c54 100644
--- a/chrome/browser/chromeos/ui/kiosk_external_update_notification.cc
+++ b/chrome/browser/chromeos/ui/kiosk_external_update_notification.cc
@@ -55,7 +55,7 @@ class KioskExternalUpdateNotificationView : public views::WidgetDelegateView {
void SetMessage(const base::string16& message) { label_->SetText(message); }
// views::WidgetDelegateView overrides:
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE {
+ virtual void OnPaint(gfx::Canvas* canvas) override {
SkPaint paint;
paint.setStyle(SkPaint::kFill_Style);
paint.setColor(kWindowBackgroundColor);
@@ -63,7 +63,7 @@ class KioskExternalUpdateNotificationView : public views::WidgetDelegateView {
views::WidgetDelegateView::OnPaint(canvas);
}
- virtual gfx::Size GetPreferredSize() const OVERRIDE {
+ virtual gfx::Size GetPreferredSize() const override {
return gfx::Size(kPreferredWidth, kPreferredHeight);
}
« no previous file with comments | « chrome/browser/chromeos/ui/inline_login_dialog.h ('k') | chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698