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 3 // found in the LICENSE file. 4 5 #include "webkit/common/cursors/webcursor.h" 6 7 #include "base/logging.h" 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 9 InitPlatformData()10void WebCursor::InitPlatformData() { 11 } 12 SerializePlatformData(Pickle * pickle) const13bool WebCursor::SerializePlatformData(Pickle* pickle) const { 14 return true; 15 } 16 DeserializePlatformData(PickleIterator * iter)17bool WebCursor::DeserializePlatformData(PickleIterator* iter) { 18 return true; 19 } 20 IsPlatformDataEqual(const WebCursor & other) const21bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 22 return true; 23 } 24 CleanupPlatformData()25void WebCursor::CleanupPlatformData() { 26 } 27 CopyPlatformData(const WebCursor & other)28void WebCursor::CopyPlatformData(const WebCursor& other) { 29 } 30