diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 18:59:01 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 18:59:01 +0000 |
commit | e624dd192e2be3a588197fa11e5c619b517b39cf (patch) | |
tree | 49c478e58e69c42da571e562d334985ca5ad6d0d /chrome/browser/cocoa/animatable_view.h | |
parent | 5cee161e7452b717ece661d194b28dff1513290d (diff) | |
download | chromium_src-e624dd192e2be3a588197fa11e5c619b517b39cf.zip chromium_src-e624dd192e2be3a588197fa11e5c619b517b39cf.tar.gz chromium_src-e624dd192e2be3a588197fa11e5c619b517b39cf.tar.bz2 |
AnimatableView needs to be an NSAnimationDelegate.
BUG=insect
TEST=10.6 SDK build
Review URL: http://codereview.chromium.org/360014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30974 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/animatable_view.h')
-rw-r--r-- | chrome/browser/cocoa/animatable_view.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/animatable_view.h b/chrome/browser/cocoa/animatable_view.h index cf55781..ef35eb7 100644 --- a/chrome/browser/cocoa/animatable_view.h +++ b/chrome/browser/cocoa/animatable_view.h @@ -7,6 +7,7 @@ #import <Cocoa/Cocoa.h> +#import "base/cocoa_protocols_mac.h" #include "base/scoped_nsobject.h" #import "chrome/browser/cocoa/view_resizer.h" @@ -18,7 +19,7 @@ // animation ends normally and an |animationDidStop:| message when the animation // was canceled (even when canceled as a result of a new animation starting). -@interface AnimatableView : NSView { +@interface AnimatableView : NSView<NSAnimationDelegate> { @protected IBOutlet id delegate_; // weak, used to send animation ended messages. |