Commit aebe7b89 authored by ddkilzer@apple.com's avatar ddkilzer@apple.com

Minor clean-up after r81156, r81172

Follow-up for:
<http://webkit.org/b/56381> Objective-C classes should be typedef-ed as structs (not void*) in C++

* platform/graphics/GraphicsLayer.h: Removed unused @class
WebLayer declaration.
* platform/graphics/ca/PlatformCAAnimation.h: Changed typedef
struct CAPropertyAnimation to class declaration.

git-svn-id: svn://svn.chromium.org/blink/trunk@81242 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 8dbb09b6
2011-03-16 David Kilzer <ddkilzer@apple.com>
Minor clean-up after r81156, r81172
Follow-up for:
<http://webkit.org/b/56381> Objective-C classes should be typedef-ed as structs (not void*) in C++
* platform/graphics/GraphicsLayer.h: Removed unused @class
WebLayer declaration.
* platform/graphics/ca/PlatformCAAnimation.h: Changed typedef
struct CAPropertyAnimation to class declaration.
2011-03-16 Andrey Adaikin <aandrey@google.com>
Reviewed by Yury Semikhatsky.
......
......@@ -46,7 +46,6 @@
#if PLATFORM(MAC)
#ifdef __OBJC__
@class WebLayer;
@class CALayer;
#else
class CALayer;
......
......@@ -39,7 +39,7 @@
#ifdef __OBJC__
@class CAPropertyAnimation;
#else
typedef struct CAPropertyAnimation CAPropertyAnimation;
class CAPropertyAnimation;
#endif
typedef CAPropertyAnimation* PlatformAnimationRef;
#elif PLATFORM(WIN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment