diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-15 22:20:10 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-15 22:20:10 +0000 |
commit | 89996f8abca02569ef967d2b095d9ac63f04d2d5 (patch) | |
tree | b951926acaefe2ffd088e0091020d9b3485d1faa | |
parent | 887cec87432cce92d06a39b62a9ce4f57260acc9 (diff) | |
download | chromium_src-89996f8abca02569ef967d2b095d9ac63f04d2d5.zip chromium_src-89996f8abca02569ef967d2b095d9ac63f04d2d5.tar.gz chromium_src-89996f8abca02569ef967d2b095d9ac63f04d2d5.tar.bz2 |
Clang/mac: Declare stuff before using it.
In particular fullscreen_controller.mm:402:29: error: 'NSAnimation' may not respond to 'endFraction'
Review URL: http://codereview.chromium.org/2836002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49843 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/cocoa/fullscreen_controller.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/fullscreen_controller.h b/chrome/browser/cocoa/fullscreen_controller.h index 9d824b3..4b83595 100644 --- a/chrome/browser/cocoa/fullscreen_controller.h +++ b/chrome/browser/cocoa/fullscreen_controller.h @@ -12,6 +12,7 @@ #include "chrome/browser/cocoa/location_bar_view_mac.h" @class BrowserWindowController; +@class DropdownAnimation; // Provides a controller to manage fullscreen mode for a single browser window. // This class handles running animations, showing and hiding the floating @@ -46,7 +47,7 @@ // Pointer to the currently running animation. Is nil if no animation is // running. - scoped_nsobject<NSAnimation> currentAnimation_; + scoped_nsobject<DropdownAnimation> currentAnimation_; // Timers for scheduled showing/hiding of the bar (which are always done with // animation). |