Make USB permissions work in the new permission message system
[chromium-blink-merge.git] / content / browser / compositor / software_output_device_x11.h
blobc6d87a35ffe864bce8c495e16ef323eacaf148af
1 // Copyright 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.
5 #ifndef CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_X11_H_
6 #define CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_X11_H_
8 #include <X11/Xlib.h>
10 #include "cc/output/software_output_device.h"
11 #include "ui/gfx/x/x11_types.h"
13 namespace ui {
14 class Compositor;
17 namespace content {
19 class SoftwareOutputDeviceX11 : public cc::SoftwareOutputDevice {
20 public:
21 explicit SoftwareOutputDeviceX11(ui::Compositor* compositor);
23 ~SoftwareOutputDeviceX11() override;
25 void EndPaint() override;
27 private:
28 ui::Compositor* compositor_;
29 XDisplay* display_;
30 GC gc_;
31 XWindowAttributes attributes_;
33 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDeviceX11);
36 } // namespace content
38 #endif // CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_X11_H_