Changeset 97428 in webkit
- Timestamp:
- Oct 13, 2011, 5:35:11 PM (14 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r97422 r97428 1 2011-10-13 Sam Weinig <sam@webkit.org> 2 3 Fix SnowLeopard build. 4 5 * UIProcess/WebPageProxy.cpp: 6 (WebKit::WebPageProxy::setCursor): 7 * WebProcess/WebCoreSupport/mac/WebDragClientMac.mm: 8 1 9 2011-10-13 Alexey Proskuryakov <ap@apple.com> 2 10 -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r97405 r97428 2643 2643 } 2644 2644 2645 void WebPageProxy::setCursor(const Cursor& cursor)2645 void WebPageProxy::setCursor(const WebCore::Cursor& cursor) 2646 2646 { 2647 2647 m_pageClient->setCursor(cursor); -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebDragClientMac.mm
r97113 r97428 70 70 @interface WKPasteboardOwner : NSObject 71 71 { 72 CachedResourceHandle< CachedImage> _image;73 } 74 - (id)initWithImage:( CachedImage*)image;72 CachedResourceHandle<WebCore::CachedImage> _image; 73 } 74 - (id)initWithImage:(WebCore::CachedImage*)image; 75 75 @end 76 76
Note:
See TracChangeset
for help on using the changeset viewer.