| Index: webkit/glue/webcursor_mac.mm
|
| ===================================================================
|
| --- webkit/glue/webcursor_mac.mm (revision 7750)
|
| +++ webkit/glue/webcursor_mac.mm (working copy)
|
| @@ -170,3 +170,26 @@
|
| CGContextDrawImage(context.get(), rect, image_ptr);
|
| }
|
|
|
| +void WebCursor::InitPlatformData() {
|
| + return;
|
| +}
|
| +
|
| +bool WebCursor::SerializePlatformData(Pickle* pickle) const {
|
| + return true;
|
| +}
|
| +
|
| +bool WebCursor::DeserializePlatformData(const Pickle* pickle, void** iter) {
|
| + return true;
|
| +}
|
| +
|
| +bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
|
| + return true;
|
| +}
|
| +
|
| +void WebCursor::CleanupPlatformData() {
|
| + return;
|
| +}
|
| +
|
| +void WebCursor::CopyPlatformData(const WebCursor& other) {
|
| + return;
|
| +}
|
|
|