OLD | NEW |
(Empty) | |
| 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/glue/webcursor.h" |
| 6 |
| 7 #include <windows.h> |
| 8 |
| 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" |
| 10 |
| 11 const ui::PlatformCursor WebCursor::GetPlatformCursor() { |
| 12 // TODO(winguru): |
| 13 return LoadCursor(NULL, IDC_ARROW); |
| 14 } |
| 15 |
| 16 void WebCursor::InitPlatformData() { |
| 17 } |
| 18 |
| 19 bool WebCursor::SerializePlatformData(Pickle* pickle) const { |
| 20 return true; |
| 21 } |
| 22 |
| 23 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { |
| 24 return true; |
| 25 } |
| 26 |
| 27 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { |
| 28 return true; |
| 29 } |
| 30 |
| 31 void WebCursor::CleanupPlatformData() { |
| 32 } |
| 33 |
| 34 void WebCursor::CopyPlatformData(const WebCursor& other) { |
| 35 } |
OLD | NEW |