| 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/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/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_ |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 SoftwareRendererWithExpandedViewport>::ExpandedViewport() const { | 182 SoftwareRendererWithExpandedViewport>::ExpandedViewport() const { |
| 183 return true; | 183 return true; |
| 184 } | 184 } |
| 185 | 185 |
| 186 typedef RendererPixelTest<GLRenderer> GLRendererPixelTest; | 186 typedef RendererPixelTest<GLRenderer> GLRendererPixelTest; |
| 187 typedef RendererPixelTest<SoftwareRenderer> SoftwareRendererPixelTest; | 187 typedef RendererPixelTest<SoftwareRenderer> SoftwareRendererPixelTest; |
| 188 | 188 |
| 189 } // namespace cc | 189 } // namespace cc |
| 190 | 190 |
| 191 #endif // CC_TEST_PIXEL_TEST_H_ | 191 #endif // CC_TEST_PIXEL_TEST_H_ |
| OLD | NEW |