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 "content/common/cursors/webcursor.h" 6 7 #include "base/logging.h" 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 9 10 namespace content { 11 12 void WebCursor::InitPlatformData() { 13 } 14 15 bool WebCursor::SerializePlatformData(Pickle* pickle) const { 16 return true; 17 } 18 19 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { 20 return true; 21 } 22 23 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 24 return true; 25 } 26 27 void WebCursor::CleanupPlatformData() { 28 } 29 30 void WebCursor::CopyPlatformData(const WebCursor& other) { 31 } 32 33 } // namespace content 34