| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/glue/webcursor.h" | 5 #include "webkit/glue/webcursor.h" |
| 6 | 6 |
| 7 #import <AppKit/AppKit.h> | 7 #import <AppKit/AppKit.h> |
| 8 #include <Carbon/Carbon.h> | 8 #include <Carbon/Carbon.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 #endif // !WEBKIT_USING_SKIA | 486 #endif // !WEBKIT_USING_SKIA |
| 487 | 487 |
| 488 void WebCursor::InitPlatformData() { | 488 void WebCursor::InitPlatformData() { |
| 489 return; | 489 return; |
| 490 } | 490 } |
| 491 | 491 |
| 492 bool WebCursor::SerializePlatformData(Pickle* pickle) const { | 492 bool WebCursor::SerializePlatformData(Pickle* pickle) const { |
| 493 return true; | 493 return true; |
| 494 } | 494 } |
| 495 | 495 |
| 496 bool WebCursor::DeserializePlatformData(const Pickle* pickle, void** iter) { | 496 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { |
| 497 return true; | 497 return true; |
| 498 } | 498 } |
| 499 | 499 |
| 500 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { | 500 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { |
| 501 return true; | 501 return true; |
| 502 } | 502 } |
| 503 | 503 |
| 504 void WebCursor::CleanupPlatformData() { | 504 void WebCursor::CleanupPlatformData() { |
| 505 return; | 505 return; |
| 506 } | 506 } |
| 507 | 507 |
| 508 void WebCursor::CopyPlatformData(const WebCursor& other) { | 508 void WebCursor::CopyPlatformData(const WebCursor& other) { |
| 509 return; | 509 return; |
| 510 } | 510 } |
| OLD | NEW |