| 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);
|
| }
|
|
|
|
|