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( |
| 20 int id, int resource_id, int hot_x, int hot_y) { |
| 21 // NOTIMPLEMENTED(); |
| 22 } |
| 23 |
| 24 void CursorLoaderWin::LoadAnimatedCursor( |
| 25 int id, int resource_id, int hot_x, int hot_y) { |
| 26 // NOTIMPLEMENTED(); |
| 27 } |
| 28 |
| 29 void CursorLoaderWin::UnloadAll() { |
| 30 // NOTIMPLEMENTED(); |
| 31 } |
| 32 |
| 33 void CursorLoaderWin::SetPlatformCursor(gfx::NativeCursor* cursor) { |
| 34 // NOTIMPLEMENTED(); |
| 35 } |
| 36 |
| 37 void CursorLoaderWin::HideHostCursor() { |
| 38 // NOTIMPLEMENTED(); |
| 39 } |
| 40 |
| 41 } // namespace ui |
OLD | NEW |