| 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 CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ | 5 #ifndef CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ |
| 6 #define CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ | 6 #define CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ |
| 7 | 7 |
| 8 #include <windows.h> |
| 9 #include <stddef.h> |
| 10 |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 13 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 11 #include "cc/output/software_output_device.h" | 15 #include "cc/output/software_output_device.h" |
| 12 | 16 |
| 13 #include <windows.h> | |
| 14 | |
| 15 namespace base { | 17 namespace base { |
| 16 class SharedMemory; | 18 class SharedMemory; |
| 17 } | 19 } |
| 18 | 20 |
| 19 namespace ui { | 21 namespace ui { |
| 20 class Compositor; | 22 class Compositor; |
| 21 } | 23 } |
| 22 | 24 |
| 23 namespace content { | 25 namespace content { |
| 24 class SoftwareOutputDeviceWin; | 26 class SoftwareOutputDeviceWin; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 bool is_hwnd_composited_; | 65 bool is_hwnd_composited_; |
| 64 OutputDeviceBacking* backing_; | 66 OutputDeviceBacking* backing_; |
| 65 bool in_paint_; | 67 bool in_paint_; |
| 66 | 68 |
| 67 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDeviceWin); | 69 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDeviceWin); |
| 68 }; | 70 }; |
| 69 | 71 |
| 70 } // namespace content | 72 } // namespace content |
| 71 | 73 |
| 72 #endif // CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ | 74 #endif // CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ |
| OLD | NEW |