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