| 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 #include "cc/quads/list_container.h" | 5 #include "cc/base/list_container.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 #include "cc/quads/draw_quad.h" | 8 #include "cc/quads/draw_quad.h" |
| 9 #include "cc/quads/largest_draw_quad.h" | 9 #include "cc/quads/largest_draw_quad.h" |
| 10 #include "cc/quads/render_pass_draw_quad.h" | 10 #include "cc/quads/render_pass_draw_quad.h" |
| 11 #include "cc/quads/shared_quad_state.h" | 11 #include "cc/quads/shared_quad_state.h" |
| 12 #include "cc/quads/stream_video_draw_quad.h" | 12 #include "cc/quads/stream_video_draw_quad.h" |
| 13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 15 |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 for (ListContainer<SharedQuadState>::ReverseIterator iter = list.rbegin(); | 658 for (ListContainer<SharedQuadState>::ReverseIterator iter = list.rbegin(); |
| 659 iter != list.rend(); | 659 iter != list.rend(); |
| 660 ++iter) { | 660 ++iter) { |
| 661 EXPECT_EQ(i, iter.index()); | 661 EXPECT_EQ(i, iter.index()); |
| 662 ++i; | 662 ++i; |
| 663 } | 663 } |
| 664 } | 664 } |
| 665 | 665 |
| 666 } // namespace | 666 } // namespace |
| 667 } // namespace cc | 667 } // namespace cc |
| OLD | NEW |