| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "cc/layers/delegated_frame_provider.h" | 10 #include "cc/layers/delegated_frame_provider.h" |
| 9 #include "cc/layers/delegated_frame_resource_collection.h" | 11 #include "cc/layers/delegated_frame_resource_collection.h" |
| 10 #include "cc/layers/heads_up_display_layer.h" | 12 #include "cc/layers/heads_up_display_layer.h" |
| 11 #include "cc/layers/io_surface_layer.h" | 13 #include "cc/layers/io_surface_layer.h" |
| 12 #include "cc/layers/layer_impl.h" | 14 #include "cc/layers/layer_impl.h" |
| 13 #include "cc/layers/painted_scrollbar_layer.h" | 15 #include "cc/layers/painted_scrollbar_layer.h" |
| 14 #include "cc/layers/picture_layer.h" | 16 #include "cc/layers/picture_layer.h" |
| 15 #include "cc/layers/texture_layer.h" | 17 #include "cc/layers/texture_layer.h" |
| 16 #include "cc/layers/texture_layer_impl.h" | 18 #include "cc/layers/texture_layer_impl.h" |
| 17 #include "cc/layers/video_layer.h" | 19 #include "cc/layers/video_layer.h" |
| (...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1627 void AfterTest() override {} | 1629 void AfterTest() override {} |
| 1628 | 1630 |
| 1629 bool deferred_; | 1631 bool deferred_; |
| 1630 }; | 1632 }; |
| 1631 | 1633 |
| 1632 SINGLE_AND_MULTI_THREAD_TEST_F( | 1634 SINGLE_AND_MULTI_THREAD_TEST_F( |
| 1633 LayerTreeHostContextTestLoseAfterSendingBeginMainFrame); | 1635 LayerTreeHostContextTestLoseAfterSendingBeginMainFrame); |
| 1634 | 1636 |
| 1635 } // namespace | 1637 } // namespace |
| 1636 } // namespace cc | 1638 } // namespace cc |
| OLD | NEW |