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/plugin_instance.h" | 5 #include "mojo/examples/pepper_container_app/plugin_instance.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 #include "mojo/examples/pepper_container_app/mojo_ppapi_globals.h" | 9 #include "mojo/examples/pepper_container_app/mojo_ppapi_globals.h" |
10 #include "ppapi/c/pp_errors.h" | 10 #include "ppapi/c/pp_errors.h" |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 void PluginInstance::PromiseResolved(PP_Instance instance, uint32 promise_id) { | 303 void PluginInstance::PromiseResolved(PP_Instance instance, uint32 promise_id) { |
304 NOTIMPLEMENTED(); | 304 NOTIMPLEMENTED(); |
305 } | 305 } |
306 | 306 |
307 void PluginInstance::PromiseResolvedWithSession(PP_Instance instance, | 307 void PluginInstance::PromiseResolvedWithSession(PP_Instance instance, |
308 uint32 promise_id, | 308 uint32 promise_id, |
309 PP_Var web_session_id_var) { | 309 PP_Var web_session_id_var) { |
310 NOTIMPLEMENTED(); | 310 NOTIMPLEMENTED(); |
311 } | 311 } |
312 | 312 |
| 313 void PluginInstance::PromiseResolvedWithKeyIds(PP_Instance instance, |
| 314 uint32 promise_id, |
| 315 PP_Var key_ids_var) { |
| 316 NOTIMPLEMENTED(); |
| 317 } |
| 318 |
313 void PluginInstance::PromiseRejected(PP_Instance instance, | 319 void PluginInstance::PromiseRejected(PP_Instance instance, |
314 uint32 promise_id, | 320 uint32 promise_id, |
315 PP_CdmExceptionCode exception_code, | 321 PP_CdmExceptionCode exception_code, |
316 uint32 system_code, | 322 uint32 system_code, |
317 PP_Var error_description_var) { | 323 PP_Var error_description_var) { |
318 NOTIMPLEMENTED(); | 324 NOTIMPLEMENTED(); |
319 } | 325 } |
320 | 326 |
321 void PluginInstance::SessionMessage(PP_Instance instance, | 327 void PluginInstance::SessionMessage(PP_Instance instance, |
322 PP_Var web_session_id_var, | 328 PP_Var web_session_id_var, |
323 PP_Var message_var, | 329 PP_Var message_var, |
324 PP_Var destination_url_var) { | 330 PP_Var destination_url_var) { |
325 NOTIMPLEMENTED(); | 331 NOTIMPLEMENTED(); |
326 } | 332 } |
327 | 333 |
| 334 void PluginInstance::SessionKeysChange(PP_Instance instance, |
| 335 PP_Var web_session_id_var, |
| 336 PP_Bool has_additional_usable_key) { |
| 337 NOTIMPLEMENTED(); |
| 338 } |
| 339 |
| 340 void PluginInstance::SessionExpirationChange(PP_Instance instance, |
| 341 PP_Var web_session_id_var, |
| 342 PP_Time new_expiry_time) { |
| 343 NOTIMPLEMENTED(); |
| 344 } |
| 345 |
328 void PluginInstance::SessionReady(PP_Instance instance, | 346 void PluginInstance::SessionReady(PP_Instance instance, |
329 PP_Var web_session_id_var) { | 347 PP_Var web_session_id_var) { |
330 NOTIMPLEMENTED(); | 348 NOTIMPLEMENTED(); |
331 } | 349 } |
332 | 350 |
333 void PluginInstance::SessionClosed(PP_Instance instance, | 351 void PluginInstance::SessionClosed(PP_Instance instance, |
334 PP_Var web_session_id_var) { | 352 PP_Var web_session_id_var) { |
335 NOTIMPLEMENTED(); | 353 NOTIMPLEMENTED(); |
336 } | 354 } |
337 | 355 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 } | 425 } |
408 | 426 |
409 PP_Var PluginInstance::GetPluginReferrerURL(PP_Instance instance, | 427 PP_Var PluginInstance::GetPluginReferrerURL(PP_Instance instance, |
410 PP_URLComponents_Dev* components) { | 428 PP_URLComponents_Dev* components) { |
411 NOTIMPLEMENTED(); | 429 NOTIMPLEMENTED(); |
412 return PP_MakeUndefined(); | 430 return PP_MakeUndefined(); |
413 } | 431 } |
414 | 432 |
415 } // namespace examples | 433 } // namespace examples |
416 } // namespace mojo | 434 } // namespace mojo |
OLD | NEW |