Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: ui/base/cursor/cursor_loader_win.cc

Issue 10919135: Move ash specific cursor code to CursorManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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, const gfx::Point& hot) {
21 // NOTIMPLEMENTED();
22 }
23
24 void CursorLoaderWin::LoadAnimatedCursor(
25 int id, int resource_id, const gfx::Point& hot, itn frame_delay_ms) {
26 // NOTIMPLEMENTED();
27 }
28
29 void CursorLoaderWin::UnloadAll() {
30 // NOTIMPLEMENTED();
31 }
32
33 void CursorLoaderWin::SetPlatformCursor(gfx::NativeCursor* cursor) {
34 // NOTIMPLEMENTED();
35 }
36
37 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698