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 #ifndef CC_TRANSERABLE_RESOURCE_H_ | 5 #ifndef CC_TRANSFERABLE_RESOURCE_H_ |
6 #define CC_TRANSERABLE_RESOURCE_H_ | 6 #define CC_TRANSFERABLE_RESOURCE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "cc/cc_export.h" | 10 #include "cc/cc_export.h" |
11 #include "ui/gfx/size.h" | 11 #include "ui/gfx/size.h" |
12 #include "third_party/khronos/GLES2/gl2.h" | 12 #include "third_party/khronos/GLES2/gl2.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorTransf
erableResourceList.h" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorTransf
erableResourceList.h" |
14 | 14 |
15 namespace cc { | 15 namespace cc { |
16 | 16 |
(...skipping 20 matching lines...) Expand all Loading... |
37 public NON_EXPORTED_BASE(WebKit::WebCompositorTransferableResourceList) { | 37 public NON_EXPORTED_BASE(WebKit::WebCompositorTransferableResourceList) { |
38 TransferableResourceList(); | 38 TransferableResourceList(); |
39 ~TransferableResourceList(); | 39 ~TransferableResourceList(); |
40 | 40 |
41 TransferableResourceArray resources; | 41 TransferableResourceArray resources; |
42 unsigned sync_point; | 42 unsigned sync_point; |
43 }; | 43 }; |
44 | 44 |
45 } // namespace cc | 45 } // namespace cc |
46 | 46 |
47 #endif // CC_TRANSERABLE_RESOURCE_H_ | 47 #endif // CC_TRANSFERABLE_RESOURCE_H_ |
OLD | NEW |