diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-01 08:31:07 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-01 08:31:07 +0000 |
commit | 6386a4bf66060345f7dbcb975b9f950cce2552c2 (patch) | |
tree | 61f948ce3ba01481e5d1fda82760a64f5dc23d90 /ui/base/dragdrop | |
parent | 2c9382375f1bcea32b7fdbf165fffdd39e046f0b (diff) | |
download | chromium_src-6386a4bf66060345f7dbcb975b9f950cce2552c2.zip chromium_src-6386a4bf66060345f7dbcb975b9f950cce2552c2.tar.gz chromium_src-6386a4bf66060345f7dbcb975b9f950cce2552c2.tar.bz2 |
ui: Fix clang warnings about missing virtual and OVERRIDE annotations.
BUG=115047
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10905053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/dragdrop')
-rw-r--r-- | ui/base/dragdrop/drag_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/base/dragdrop/drag_utils.cc b/ui/base/dragdrop/drag_utils.cc index 34f4f93..97e855c 100644 --- a/ui/base/dragdrop/drag_utils.cc +++ b/ui/base/dragdrop/drag_utils.cc @@ -39,7 +39,7 @@ class FileDragImageSource : public gfx::CanvasImageSource { } // Overridden from gfx::CanvasImageSource. - void Draw(gfx::Canvas* canvas) OVERRIDE { + virtual void Draw(gfx::Canvas* canvas) OVERRIDE { // Set up our text portion ResourceBundle& rb = ResourceBundle::GetSharedInstance(); gfx::Font font = rb.GetFont(ResourceBundle::BaseFont); |