| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_OZONE_PUBLIC_NATIVE_PIXMAP_H_ | 5 #ifndef UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_ |
| 6 #define UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_ | 6 #define UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_ |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "ui/gfx/buffer_types.h" |
| 11 #include "ui/gfx/native_pixmap_handle.h" | 12 #include "ui/gfx/native_pixmap_handle.h" |
| 12 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
| 13 #include "ui/gfx/overlay_transform.h" | 14 #include "ui/gfx/overlay_transform.h" |
| 14 | 15 |
| 15 namespace gfx { | 16 namespace gfx { |
| 16 class Rect; | 17 class Rect; |
| 17 class RectF; | 18 class RectF; |
| 18 } | 19 } |
| 19 | 20 |
| 20 namespace ui { | 21 namespace ui { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 72 |
| 72 private: | 73 private: |
| 73 friend class base::RefCountedThreadSafe<NativePixmap>; | 74 friend class base::RefCountedThreadSafe<NativePixmap>; |
| 74 | 75 |
| 75 DISALLOW_COPY_AND_ASSIGN(NativePixmap); | 76 DISALLOW_COPY_AND_ASSIGN(NativePixmap); |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 } // namespace ui | 79 } // namespace ui |
| 79 | 80 |
| 80 #endif // UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_ | 81 #endif // UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_ |
| OLD | NEW |