blob: 8fc9adc9ef164b5cb940bab905e2903fb951b642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/cursor/cursor_loader_win.h"
namespace ui {
CursorLoader* CursorLoader::Create() {
return new CursorLoaderWin;
}
CursorLoaderWin::CursorLoaderWin() {
}
CursorLoaderWin::~CursorLoaderWin() {
}
void CursorLoaderWin::LoadImageCursor(int id,
int resource_id,
const gfx::Point& hot) {
// NOTIMPLEMENTED();
}
void CursorLoaderWin::LoadAnimatedCursor(int id,
int resource_id,
const gfx::Point& hot,
int frame_delay_ms) {
// NOTIMPLEMENTED();
}
void CursorLoaderWin::UnloadAll() {
// NOTIMPLEMENTED();
}
void CursorLoaderWin::SetPlatformCursor(gfx::NativeCursor* cursor) {
// NOTIMPLEMENTED();
}
} // namespace ui
|