| 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 PPAPI_PROXY_COMPOSITOR_LAYER_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_COMPOSITOR_LAYER_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_COMPOSITOR_LAYER_RESOURCE_H_ | 6 #define PPAPI_PROXY_COMPOSITOR_LAYER_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "ppapi/c/ppb_compositor_layer.h" | 11 #include "ppapi/c/ppb_compositor_layer.h" |
| 9 #include "ppapi/proxy/plugin_resource.h" | 12 #include "ppapi/proxy/plugin_resource.h" |
| 10 #include "ppapi/proxy/ppapi_proxy_export.h" | 13 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 11 #include "ppapi/shared_impl/compositor_layer_data.h" | 14 #include "ppapi/shared_impl/compositor_layer_data.h" |
| 12 #include "ppapi/shared_impl/scoped_pp_resource.h" | 15 #include "ppapi/shared_impl/scoped_pp_resource.h" |
| 13 #include "ppapi/thunk/ppb_compositor_layer_api.h" | 16 #include "ppapi/thunk/ppb_compositor_layer_api.h" |
| 14 | 17 |
| 15 namespace gpu { | 18 namespace gpu { |
| 16 struct SyncToken; | 19 struct SyncToken; |
| 17 } | 20 } |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // Layer data. | 104 // Layer data. |
| 102 CompositorLayerData data_; | 105 CompositorLayerData data_; |
| 103 | 106 |
| 104 DISALLOW_COPY_AND_ASSIGN(CompositorLayerResource); | 107 DISALLOW_COPY_AND_ASSIGN(CompositorLayerResource); |
| 105 }; | 108 }; |
| 106 | 109 |
| 107 } // namespace proxy | 110 } // namespace proxy |
| 108 } // namespace ppapi | 111 } // namespace ppapi |
| 109 | 112 |
| 110 #endif // PPAPI_PROXY_COMPOSITOR_LAYER_RESOURCE_H_ | 113 #endif // PPAPI_PROXY_COMPOSITOR_LAYER_RESOURCE_H_ |
| OLD | NEW |