| 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 #include "base/files/file_util.h" | 5 #include "base/files/file_util.h" |
| 6 #include "cc/output/gl_renderer.h" | 6 #include "cc/output/gl_renderer.h" |
| 7 #include "cc/output/software_renderer.h" | 7 #include "cc/output/software_renderer.h" |
| 8 #include "cc/quads/render_pass.h" | 8 #include "cc/quads/render_pass.h" |
| 9 #include "cc/test/pixel_comparator.h" | 9 #include "cc/test/pixel_comparator.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "ui/gfx/size.h" | 11 #include "ui/gfx/geometry/size.h" |
| 12 #include "ui/gl/gl_implementation.h" | 12 #include "ui/gl/gl_implementation.h" |
| 13 | 13 |
| 14 #ifndef CC_TEST_PIXEL_TEST_H_ | 14 #ifndef CC_TEST_PIXEL_TEST_H_ |
| 15 #define CC_TEST_PIXEL_TEST_H_ | 15 #define CC_TEST_PIXEL_TEST_H_ |
| 16 | 16 |
| 17 namespace cc { | 17 namespace cc { |
| 18 class CopyOutputResult; | 18 class CopyOutputResult; |
| 19 class DirectRenderer; | 19 class DirectRenderer; |
| 20 class FakeOutputSurfaceClient; | 20 class FakeOutputSurfaceClient; |
| 21 class OutputSurface; | 21 class OutputSurface; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 SoftwareRendererWithExpandedViewport>::ExpandedViewport() const { | 184 SoftwareRendererWithExpandedViewport>::ExpandedViewport() const { |
| 185 return true; | 185 return true; |
| 186 } | 186 } |
| 187 | 187 |
| 188 typedef RendererPixelTest<GLRenderer> GLRendererPixelTest; | 188 typedef RendererPixelTest<GLRenderer> GLRendererPixelTest; |
| 189 typedef RendererPixelTest<SoftwareRenderer> SoftwareRendererPixelTest; | 189 typedef RendererPixelTest<SoftwareRenderer> SoftwareRendererPixelTest; |
| 190 | 190 |
| 191 } // namespace cc | 191 } // namespace cc |
| 192 | 192 |
| 193 #endif // CC_TEST_PIXEL_TEST_H_ | 193 #endif // CC_TEST_PIXEL_TEST_H_ |
| OLD | NEW |