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

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: rebase 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
« no previous file with comments | « ui/base/cursor/cursor_loader_win.h ('k') | ui/base/cursor/cursor_loader_x11.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(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
OLDNEW
« no previous file with comments | « ui/base/cursor/cursor_loader_win.h ('k') | ui/base/cursor/cursor_loader_x11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698