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 CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 PP_Resource CreateFlashMessageLoop(PP_Instance instance) override; | 53 PP_Resource CreateFlashMessageLoop(PP_Instance instance) override; |
54 PP_Resource CreateGraphics3D(PP_Instance instance, | 54 PP_Resource CreateGraphics3D(PP_Instance instance, |
55 PP_Resource share_context, | 55 PP_Resource share_context, |
56 const int32_t* attrib_list) override; | 56 const int32_t* attrib_list) override; |
57 PP_Resource CreateGraphics3DRaw( | 57 PP_Resource CreateGraphics3DRaw( |
58 PP_Instance instance, | 58 PP_Instance instance, |
59 PP_Resource share_context, | 59 PP_Resource share_context, |
60 const int32_t* attrib_list, | 60 const int32_t* attrib_list, |
61 gpu::Capabilities* capabilities, | 61 gpu::Capabilities* capabilities, |
62 base::SharedMemoryHandle* shared_state, | 62 base::SharedMemoryHandle* shared_state, |
63 uint64_t* command_buffer_id) override; | 63 gpu::CommandBufferId* command_buffer_id) override; |
64 PP_Resource CreateHostResolver(PP_Instance instance) override; | 64 PP_Resource CreateHostResolver(PP_Instance instance) override; |
65 PP_Resource CreateHostResolverPrivate(PP_Instance instance) override; | 65 PP_Resource CreateHostResolverPrivate(PP_Instance instance) override; |
66 PP_Resource CreateImageData(PP_Instance instance, | 66 PP_Resource CreateImageData(PP_Instance instance, |
67 PP_ImageDataFormat format, | 67 PP_ImageDataFormat format, |
68 const PP_Size* size, | 68 const PP_Size* size, |
69 PP_Bool init_to_zero) override; | 69 PP_Bool init_to_zero) override; |
70 PP_Resource CreateImageDataSimple(PP_Instance instance, | 70 PP_Resource CreateImageDataSimple(PP_Instance instance, |
71 PP_ImageDataFormat format, | 71 PP_ImageDataFormat format, |
72 const PP_Size* size, | 72 const PP_Size* size, |
73 PP_Bool init_to_zero) override; | 73 PP_Bool init_to_zero) override; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 PP_Bool scroll_by_page) override; | 140 PP_Bool scroll_by_page) override; |
141 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; | 141 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; |
142 | 142 |
143 private: | 143 private: |
144 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 144 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
145 }; | 145 }; |
146 | 146 |
147 } // namespace content | 147 } // namespace content |
148 | 148 |
149 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 149 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |