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

Side by Side Diff: ui/wayland/wayland_shm_buffer.h

Issue 7457023: Adding a Wayland basic toolkit (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed the WaylandDisplay singleton Created 9 years, 5 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) 2011 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 #ifndef UI_WAYLAND_WAYLAND_SHM_BUFFER_H_
6 #define UI_WAYLAND_WAYLAND_SHM_BUFFER_H_
7
8 #include <stdint.h>
9
10 #include "base/basictypes.h"
11 #include "ui/wayland/wayland_buffer.h"
12
13 typedef struct _cairo_surface cairo_surface_t;
14
15 class WaylandDisplay;
16
17 // A SHM implementation for the WaylandBuffer.
18 class WaylandShmBuffer : public WaylandBuffer {
19 public:
20 // Creates a Wayland buffer with the given width and height
21 WaylandShmBuffer(WaylandDisplay* display, uint32_t width, uint32_t height);
22 virtual ~WaylandShmBuffer();
23
24 // Returns a pointer to the surface associated with the buffer.
25 // This object maintains ownership of the surface.
26 cairo_surface_t* GetDataSurface() const;
27 private:
28 // The surface associated with the Wayland buffer
29 cairo_surface_t* cairo_data_surface_;
30
31 DISALLOW_COPY_AND_ASSIGN(WaylandShmBuffer);
32 };
33
34 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698