| 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 "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 private: | 85 private: |
| 86 static bool FromTextureQuad(ResourceProvider* resource_provider, | 86 static bool FromTextureQuad(ResourceProvider* resource_provider, |
| 87 const TextureDrawQuad* quad, | 87 const TextureDrawQuad* quad, |
| 88 OverlayCandidate* candidate); | 88 OverlayCandidate* candidate); |
| 89 static bool FromStreamVideoQuad(ResourceProvider* resource_provider, | 89 static bool FromStreamVideoQuad(ResourceProvider* resource_provider, |
| 90 const StreamVideoDrawQuad* quad, | 90 const StreamVideoDrawQuad* quad, |
| 91 OverlayCandidate* candidate); | 91 OverlayCandidate* candidate); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 typedef std::vector<OverlayCandidate> OverlayCandidateList; | |
| 95 | |
| 96 } // namespace cc | 94 } // namespace cc |
| 97 | 95 |
| 98 #endif // CC_OUTPUT_OVERLAY_CANDIDATE_H_ | 96 #endif // CC_OUTPUT_OVERLAY_CANDIDATE_H_ |
| OLD | NEW |