OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_GFX_OZONE_IMPL_DRI_WRAPPER_H_ | 5 #ifndef UI_GFX_OZONE_DRI_DRI_WRAPPER_H_ |
6 #define UI_GFX_OZONE_IMPL_DRI_WRAPPER_H_ | 6 #define UI_GFX_OZONE_DRI_DRI_WRAPPER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 | 11 |
12 typedef struct _drmModeCrtc drmModeCrtc; | 12 typedef struct _drmModeCrtc drmModeCrtc; |
13 typedef struct _drmModeModeInfo drmModeModeInfo; | 13 typedef struct _drmModeModeInfo drmModeModeInfo; |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 | 16 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // The file descriptor associated with this wrapper. All DRM operations will | 75 // The file descriptor associated with this wrapper. All DRM operations will |
76 // be performed using this FD. | 76 // be performed using this FD. |
77 int fd_; | 77 int fd_; |
78 | 78 |
79 private: | 79 private: |
80 DISALLOW_COPY_AND_ASSIGN(DriWrapper); | 80 DISALLOW_COPY_AND_ASSIGN(DriWrapper); |
81 }; | 81 }; |
82 | 82 |
83 } // namespace gfx | 83 } // namespace gfx |
84 | 84 |
85 #endif // UI_GFX_OZONE_IMPL_DRI_WRAPPER_H_ | 85 #endif // UI_GFX_OZONE_DRI_DRI_WRAPPER_H_ |
OLD | NEW |