OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 PPAPI_PROXY_GRAPHICS_2D_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_GRAPHICS_2D_RESOURCE_H_ |
6 #define PPAPI_PROXY_GRAPHICS_2D_RESOURCE_H_ | 6 #define PPAPI_PROXY_GRAPHICS_2D_RESOURCE_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.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/thunk/ppb_graphics_2d_api.h" | 14 #include "ppapi/thunk/ppb_graphics_2d_api.h" |
12 | 15 |
13 namespace ppapi { | 16 namespace ppapi { |
14 | 17 |
15 class TrackedCallback; | 18 class TrackedCallback; |
16 | 19 |
17 namespace proxy { | 20 namespace proxy { |
18 | 21 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 54 |
52 scoped_refptr<TrackedCallback> current_flush_callback_; | 55 scoped_refptr<TrackedCallback> current_flush_callback_; |
53 | 56 |
54 DISALLOW_COPY_AND_ASSIGN(Graphics2DResource); | 57 DISALLOW_COPY_AND_ASSIGN(Graphics2DResource); |
55 }; | 58 }; |
56 | 59 |
57 } // namespace proxy | 60 } // namespace proxy |
58 } // namespace ppapi | 61 } // namespace ppapi |
59 | 62 |
60 #endif // PPAPI_PROXY_GRAPHICS_2D_RESOURCE_H_ | 63 #endif // PPAPI_PROXY_GRAPHICS_2D_RESOURCE_H_ |
OLD | NEW |