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

Side by Side Diff: ui/ozone/common/gpu/ozone_gpu_messages.h

Issue 348603004: ozone: Add GPU message for cursor updates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: split update into set & move Created 6 years, 6 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/ozone/common/gpu/ozone_gpu_message_generator.cc ('k') | ui/ozone/ozone.gyp » ('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) 2014 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 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section.
7
8 #include "ipc/ipc_message_macros.h"
9 #include "third_party/skia/include/core/SkBitmap.h"
10 #include "ui/gfx/geometry/point.h"
11 #include "ui/gfx/ipc/gfx_param_traits.h"
12 #include "ui/gfx/native_widget_types.h"
13 #include "ui/ozone/ozone_export.h"
14
15 #undef IPC_MESSAGE_EXPORT
16 #define IPC_MESSAGE_EXPORT OZONE_EXPORT
17
18 #define IPC_MESSAGE_START OzoneGpuMsgStart
19
20 //------------------------------------------------------------------------------
21 // GPU Messages
22 // These are messages from the browser to the GPU process.
23
24 // Update the HW cursor bitmap & move to specified location.
25 IPC_MESSAGE_CONTROL3(OzoneGpuMsg_CursorSet,
26 gfx::AcceleratedWidget, SkBitmap, gfx::Point)
27
28 // Move the HW cursor to the specified location.
29 IPC_MESSAGE_CONTROL2(OzoneGpuMsg_CursorMove,
30 gfx::AcceleratedWidget, gfx::Point)
31
OLDNEW
« no previous file with comments | « ui/ozone/common/gpu/ozone_gpu_message_generator.cc ('k') | ui/ozone/ozone.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698