summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-14 04:26:26 +0000
committerhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-14 04:26:26 +0000
commitcc1073afc7ebf6e28fc3cf0316ca0d783ed5809c (patch)
tree5bdc8b2569af183b5260e5a1c7ec0a62130b9666
parent0d3b9dda19ce9f3fb74e601146ac9f1f1d68dfbe (diff)
downloadchromium_src-cc1073afc7ebf6e28fc3cf0316ca0d783ed5809c.zip
chromium_src-cc1073afc7ebf6e28fc3cf0316ca0d783ed5809c.tar.gz
chromium_src-cc1073afc7ebf6e28fc3cf0316ca0d783ed5809c.tar.bz2
Add an OVERRIDE keyword
This change adds an OVERRIDE keyword to the BaseFormatView::ButtonPressed function to fix a build break on the "Linux ChromiumOS (Clang dbg)" bot. TBR=miket BUG=none TEST=fix builds on the "Linux ChromiumOS (Clang dbg)" bot and the "Linux Chromium OS ASAN Builder" bot. Review URL: https://codereview.chromium.org/11410077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167593 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--ui/message_center/base_format_view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/message_center/base_format_view.h b/ui/message_center/base_format_view.h
index 131521a..d0cafaf 100644
--- a/ui/message_center/base_format_view.h
+++ b/ui/message_center/base_format_view.h
@@ -25,7 +25,8 @@ class BaseFormatView : public MessageView {
virtual void SetUpView() OVERRIDE;
// views::ButtonListener
- virtual void ButtonPressed(views::Button* sender, const ui::Event& event);
+ virtual void ButtonPressed(views::Button* sender,
+ const ui::Event& event) OVERRIDE;
protected:
BaseFormatView();