diff options
author | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-12 00:30:02 +0000 |
---|---|---|
committer | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-12 00:30:02 +0000 |
commit | 637e4d6884c3dd31aa72b23550371d61f8a80a49 (patch) | |
tree | 4e760d233e37c4aa82b136e241c9bd9043d3d000 /ash/drag_drop | |
parent | 9058042d9d4ad27e76b09caee3d944a25b22e0ff (diff) | |
download | chromium_src-637e4d6884c3dd31aa72b23550371d61f8a80a49.zip chromium_src-637e4d6884c3dd31aa72b23550371d61f8a80a49.tar.gz chromium_src-637e4d6884c3dd31aa72b23550371d61f8a80a49.tar.bz2 |
OVERRIDE Fixups for TableView and DragDropController
Fixes OVERRIDE style violations caught by clang.
BUG=None
TEST=Compiles on Mac/Clang with style plugins.
R=sky@chromium.org
Review URL: http://codereview.chromium.org/9185021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/drag_drop')
-rw-r--r-- | ash/drag_drop/drag_drop_controller.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/drag_drop/drag_drop_controller.h b/ash/drag_drop/drag_drop_controller.h index dd3b028..cbe6853 100644 --- a/ash/drag_drop/drag_drop_controller.h +++ b/ash/drag_drop/drag_drop_controller.h @@ -67,11 +67,11 @@ class ASH_EXPORT DragDropController friend class ash::test::DragDropControllerTest; // Overridden from ui::LayerAnimationObserver: - void OnLayerAnimationEnded( + virtual void OnLayerAnimationEnded( const ui::LayerAnimationSequence* sequence) OVERRIDE; - void OnLayerAnimationAborted( + virtual void OnLayerAnimationAborted( const ui::LayerAnimationSequence* sequence) OVERRIDE; - void OnLayerAnimationScheduled( + virtual void OnLayerAnimationScheduled( const ui::LayerAnimationSequence* sequence) OVERRIDE {} // Helper method to start drag widget flying back animation. |