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_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ppapi/proxy/connection.h" | 10 #include "ppapi/proxy/connection.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 PP_Instance instance) OVERRIDE; | 60 PP_Instance instance) OVERRIDE; |
61 virtual PP_Resource CreateTrueTypeFont( | 61 virtual PP_Resource CreateTrueTypeFont( |
62 PP_Instance instance, | 62 PP_Instance instance, |
63 const struct PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; | 63 const struct PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; |
64 virtual PP_Resource CreateURLRequestInfo( | 64 virtual PP_Resource CreateURLRequestInfo( |
65 PP_Instance instance) OVERRIDE; | 65 PP_Instance instance) OVERRIDE; |
66 virtual PP_Resource CreateURLResponseInfo( | 66 virtual PP_Resource CreateURLResponseInfo( |
67 PP_Instance instance, | 67 PP_Instance instance, |
68 const ::ppapi::URLResponseInfoData& data, | 68 const ::ppapi::URLResponseInfoData& data, |
69 PP_Resource file_ref_resource) OVERRIDE; | 69 PP_Resource file_ref_resource) OVERRIDE; |
| 70 virtual PP_Resource CreateVideoDestination( |
| 71 PP_Instance instance) OVERRIDE; |
| 72 virtual PP_Resource CreateVideoSource( |
| 73 PP_Instance instance) OVERRIDE; |
70 virtual PP_Resource CreateWebSocket( | 74 virtual PP_Resource CreateWebSocket( |
71 PP_Instance instance) OVERRIDE; | 75 PP_Instance instance) OVERRIDE; |
72 | 76 |
73 private: | 77 private: |
74 // Non-owning pointer to the host for the current plugin. | 78 // Non-owning pointer to the host for the current plugin. |
75 RendererPpapiHostImpl* host_impl_; | 79 RendererPpapiHostImpl* host_impl_; |
76 | 80 |
77 DISALLOW_COPY_AND_ASSIGN(PepperInProcessResourceCreation); | 81 DISALLOW_COPY_AND_ASSIGN(PepperInProcessResourceCreation); |
78 }; | 82 }; |
79 | 83 |
80 } // namespace content | 84 } // namespace content |
81 | 85 |
82 #endif // CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ | 86 #endif // CONTENT_RENDERER_PEPPER_PEPPER_IN_PROCESS_RESOURCE_CREATION_H_ |
OLD | NEW |