| 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/common/cursors/webcursor.h" | 5 #include "content/common/cursors/webcursor.h" |
| 6 |
| 7 namespace content { |
| 6 | 8 |
| 7 const ui::PlatformCursor WebCursor::GetPlatformCursor() { | 9 const ui::PlatformCursor WebCursor::GetPlatformCursor() { |
| 8 return NULL; | 10 return NULL; |
| 9 } | 11 } |
| 10 | 12 |
| 11 void WebCursor::SetDisplayInfo(const gfx::Display& display) { | 13 void WebCursor::SetDisplayInfo(const gfx::Display& display) { |
| 12 return; | 14 return; |
| 13 } | 15 } |
| 14 | 16 |
| 15 void WebCursor::InitPlatformData() { | 17 void WebCursor::InitPlatformData() { |
| 16 } | 18 } |
| 17 | 19 |
| 18 bool WebCursor::SerializePlatformData(Pickle* pickle) const { | 20 bool WebCursor::SerializePlatformData(Pickle* pickle) const { |
| 19 return true; | 21 return true; |
| 20 } | 22 } |
| 21 | 23 |
| 22 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { | 24 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { |
| 23 return true; | 25 return true; |
| 24 } | 26 } |
| 25 | 27 |
| 26 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { | 28 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { |
| 27 return true; | 29 return true; |
| 28 } | 30 } |
| 29 | 31 |
| 30 void WebCursor::CleanupPlatformData() { | 32 void WebCursor::CleanupPlatformData() { |
| 31 } | 33 } |
| 32 | 34 |
| 33 void WebCursor::CopyPlatformData(const WebCursor& other) { | 35 void WebCursor::CopyPlatformData(const WebCursor& other) { |
| 34 } | 36 } |
| 37 |
| 38 } // namespace content |
| OLD | NEW |