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 <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "cc/base/filter_operation.h" |
11 #include "cc/base/region.h" | 12 #include "cc/base/region.h" |
12 #include "cc/output/ca_layer_overlay.h" | 13 #include "cc/output/ca_layer_overlay.h" |
13 #include "cc/output/filter_operation.h" | |
14 #include "cc/output/gl_renderer.h" | 14 #include "cc/output/gl_renderer.h" |
15 #include "cc/output/output_surface.h" | 15 #include "cc/output/output_surface.h" |
16 #include "cc/output/output_surface_client.h" | 16 #include "cc/output/output_surface_client.h" |
17 #include "cc/output/output_surface_frame.h" | 17 #include "cc/output/output_surface_frame.h" |
18 #include "cc/output/overlay_candidate_validator.h" | 18 #include "cc/output/overlay_candidate_validator.h" |
19 #include "cc/output/overlay_processor.h" | 19 #include "cc/output/overlay_processor.h" |
20 #include "cc/output/overlay_strategy_fullscreen.h" | 20 #include "cc/output/overlay_strategy_fullscreen.h" |
21 #include "cc/output/overlay_strategy_single_on_top.h" | 21 #include "cc/output/overlay_strategy_single_on_top.h" |
22 #include "cc/output/overlay_strategy_underlay.h" | 22 #include "cc/output/overlay_strategy_underlay.h" |
23 #include "cc/output/overlay_strategy_underlay_cast.h" | 23 #include "cc/output/overlay_strategy_underlay_cast.h" |
(...skipping 2494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2518 kOverlayRect, render_pass_id_, 2, gfx::RectF(), gfx::Size(), | 2518 kOverlayRect, render_pass_id_, 2, gfx::RectF(), gfx::Size(), |
2519 gfx::Vector2dF(1, 1), gfx::PointF(), gfx::RectF()); | 2519 gfx::Vector2dF(1, 1), gfx::PointF(), gfx::RectF()); |
2520 } | 2520 } |
2521 | 2521 |
2522 ProcessForOverlays(); | 2522 ProcessForOverlays(); |
2523 EXPECT_EQ(0U, ca_layer_list_.size()); | 2523 EXPECT_EQ(0U, ca_layer_list_.size()); |
2524 } | 2524 } |
2525 | 2525 |
2526 } // namespace | 2526 } // namespace |
2527 } // namespace cc | 2527 } // namespace cc |
OLD | NEW |