OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CHROMECAST_MEDIA_CMA_FILTERS_HOLE_FRAME_FACTORY_H_ | 5 #ifndef CHROMECAST_MEDIA_CMA_FILTERS_HOLE_FRAME_FACTORY_H_ |
6 #define CHROMECAST_MEDIA_CMA_FILTERS_HOLE_FRAME_FACTORY_H_ | 6 #define CHROMECAST_MEDIA_CMA_FILTERS_HOLE_FRAME_FACTORY_H_ |
halliwell
2015/10/14 15:02:37
nit: can you check all the moved files include gua
kmackay
2015/10/14 21:27:26
Done.
| |
7 | 7 |
8 #include <GLES2/gl2.h> | 8 #include <GLES2/gl2.h> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "gpu/command_buffer/common/mailbox.h" | 11 #include "gpu/command_buffer/common/mailbox.h" |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 class Size; | 14 class Size; |
15 } | 15 } |
16 | 16 |
(...skipping 23 matching lines...) Expand all Loading... | |
40 GLuint image_id_; | 40 GLuint image_id_; |
41 GLuint sync_point_; | 41 GLuint sync_point_; |
42 | 42 |
43 DISALLOW_COPY_AND_ASSIGN(HoleFrameFactory); | 43 DISALLOW_COPY_AND_ASSIGN(HoleFrameFactory); |
44 }; | 44 }; |
45 | 45 |
46 } // namespace media | 46 } // namespace media |
47 } // namespace chromecast | 47 } // namespace chromecast |
48 | 48 |
49 #endif // CHROMECAST_MEDIA_CMA_FILTERS_HOLE_FRAME_FACTORY_H_ | 49 #endif // CHROMECAST_MEDIA_CMA_FILTERS_HOLE_FRAME_FACTORY_H_ |
OLD | NEW |