| 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 #ifndef CC_OUTPUT_OVERLAY_CANDIDATE_H_ | 5 #ifndef CC_OUTPUT_OVERLAY_CANDIDATE_H_ |
| 6 #define CC_OUTPUT_OVERLAY_CANDIDATE_H_ | 6 #define CC_OUTPUT_OVERLAY_CANDIDATE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
| 12 #include "cc/resources/resource_format.h" | 11 #include "cc/resources/resource_format.h" |
| 13 #include "ui/gfx/geometry/rect.h" | 12 #include "ui/gfx/geometry/rect.h" |
| 14 #include "ui/gfx/overlay_transform.h" | 13 #include "ui/gfx/overlay_transform.h" |
| 15 #include "ui/gfx/transform.h" | 14 #include "ui/gfx/transform.h" |
| 16 | 15 |
| 17 namespace cc { | 16 namespace cc { |
| 18 | 17 |
| 19 class CC_EXPORT OverlayCandidate { | 18 class CC_EXPORT OverlayCandidate { |
| 20 public: | 19 public: |
| (...skipping 23 matching lines...) Expand all Loading... |
| 44 // To be modified by the implementer if this candidate can go into | 43 // To be modified by the implementer if this candidate can go into |
| 45 // an overlay. | 44 // an overlay. |
| 46 bool overlay_handled; | 45 bool overlay_handled; |
| 47 }; | 46 }; |
| 48 | 47 |
| 49 typedef std::vector<OverlayCandidate> OverlayCandidateList; | 48 typedef std::vector<OverlayCandidate> OverlayCandidateList; |
| 50 | 49 |
| 51 } // namespace cc | 50 } // namespace cc |
| 52 | 51 |
| 53 #endif // CC_OUTPUT_OVERLAY_CANDIDATE_H_ | 52 #endif // CC_OUTPUT_OVERLAY_CANDIDATE_H_ |
| OLD | NEW |