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 #include "mojo/examples/pepper_container_app/resource_creation_impl.h" | 5 #include "mojo/examples/pepper_container_app/resource_creation_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "mojo/examples/pepper_container_app/graphics_3d_resource.h" | 8 #include "mojo/examples/pepper_container_app/graphics_3d_resource.h" |
9 | 9 |
10 namespace mojo { | 10 namespace mojo { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 } | 145 } |
146 | 146 |
147 PP_Resource ResourceCreationImpl::CreateAudioConfig( | 147 PP_Resource ResourceCreationImpl::CreateAudioConfig( |
148 PP_Instance instance, | 148 PP_Instance instance, |
149 PP_AudioSampleRate sample_rate, | 149 PP_AudioSampleRate sample_rate, |
150 uint32_t sample_frame_count) { | 150 uint32_t sample_frame_count) { |
151 NOTIMPLEMENTED(); | 151 NOTIMPLEMENTED(); |
152 return 0; | 152 return 0; |
153 } | 153 } |
154 | 154 |
| 155 PP_Resource ResourceCreationImpl::CreateCompositor(PP_Instance instance) { |
| 156 NOTIMPLEMENTED(); |
| 157 return 0; |
| 158 } |
| 159 |
155 PP_Resource ResourceCreationImpl::CreateFileChooser( | 160 PP_Resource ResourceCreationImpl::CreateFileChooser( |
156 PP_Instance instance, | 161 PP_Instance instance, |
157 PP_FileChooserMode_Dev mode, | 162 PP_FileChooserMode_Dev mode, |
158 const PP_Var& accept_types) { | 163 const PP_Var& accept_types) { |
159 NOTIMPLEMENTED(); | 164 NOTIMPLEMENTED(); |
160 return 0; | 165 return 0; |
161 } | 166 } |
162 | 167 |
163 PP_Resource ResourceCreationImpl::CreateGraphics2D(PP_Instance instance, | 168 PP_Resource ResourceCreationImpl::CreateGraphics2D(PP_Instance instance, |
164 const PP_Size* size, | 169 const PP_Size* size, |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 PP_Instance instance, | 395 PP_Instance instance, |
391 PP_Resource context3d_id, | 396 PP_Resource context3d_id, |
392 PP_VideoDecoder_Profile profile) { | 397 PP_VideoDecoder_Profile profile) { |
393 NOTIMPLEMENTED(); | 398 NOTIMPLEMENTED(); |
394 return 0; | 399 return 0; |
395 } | 400 } |
396 #endif // !defined(OS_NACL) | 401 #endif // !defined(OS_NACL) |
397 | 402 |
398 } // namespace examples | 403 } // namespace examples |
399 } // namespace mojo | 404 } // namespace mojo |
OLD | NEW |