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 "ui/base/cursor/cursor_loader_win.h" |
| 6 |
| 7 namespace ui { |
| 8 |
| 9 CursorLoader* CursorLoader::Create() { |
| 10 return new CursorLoaderWin; |
| 11 } |
| 12 |
| 13 CursorLoaderWin::CursorLoaderWin() { |
| 14 } |
| 15 |
| 16 CursorLoaderWin::~CursorLoaderWin() { |
| 17 } |
| 18 |
| 19 void CursorLoaderWin::LoadImageCursor(int id, |
| 20 int resource_id, |
| 21 const gfx::Point& hot) { |
| 22 // NOTIMPLEMENTED(); |
| 23 } |
| 24 |
| 25 void CursorLoaderWin::LoadAnimatedCursor(int id, |
| 26 int resource_id, |
| 27 const gfx::Point& hot, |
| 28 int frame_delay_ms) { |
| 29 // NOTIMPLEMENTED(); |
| 30 } |
| 31 |
| 32 void CursorLoaderWin::UnloadAll() { |
| 33 // NOTIMPLEMENTED(); |
| 34 } |
| 35 |
| 36 void CursorLoaderWin::SetPlatformCursor(gfx::NativeCursor* cursor) { |
| 37 // NOTIMPLEMENTED(); |
| 38 } |
| 39 |
| 40 } // namespace ui |
OLD | NEW |