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_PLUGIN_INSTANCE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 uint32 promise_id, | 472 uint32 promise_id, |
473 PP_Var web_session_id_var) override; | 473 PP_Var web_session_id_var) override; |
474 void PromiseRejected(PP_Instance instance, | 474 void PromiseRejected(PP_Instance instance, |
475 uint32 promise_id, | 475 uint32 promise_id, |
476 PP_CdmExceptionCode exception_code, | 476 PP_CdmExceptionCode exception_code, |
477 uint32 system_code, | 477 uint32 system_code, |
478 PP_Var error_description_var) override; | 478 PP_Var error_description_var) override; |
479 void SessionMessage(PP_Instance instance, | 479 void SessionMessage(PP_Instance instance, |
480 PP_Var web_session_id_var, | 480 PP_Var web_session_id_var, |
481 PP_CdmMessageType message_type, | 481 PP_CdmMessageType message_type, |
482 PP_Var message_var) override; | 482 PP_Var message_var, |
| 483 PP_Var legacy_destination_url) override; |
483 void SessionKeysChange( | 484 void SessionKeysChange( |
484 PP_Instance instance, | 485 PP_Instance instance, |
485 PP_Var web_session_id_var, | 486 PP_Var web_session_id_var, |
486 PP_Bool has_additional_usable_key, | 487 PP_Bool has_additional_usable_key, |
487 uint32_t key_count, | 488 uint32_t key_count, |
488 const struct PP_KeyInformation key_information[]) override; | 489 const struct PP_KeyInformation key_information[]) override; |
489 void SessionExpirationChange(PP_Instance instance, | 490 void SessionExpirationChange(PP_Instance instance, |
490 PP_Var web_session_id_var, | 491 PP_Var web_session_id_var, |
491 PP_Time new_expiry_time) override; | 492 PP_Time new_expiry_time) override; |
492 void SessionClosed(PP_Instance instance, PP_Var web_session_id_var) override; | 493 void SessionClosed(PP_Instance instance, PP_Var web_session_id_var) override; |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 // view change events. | 923 // view change events. |
923 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; | 924 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; |
924 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; | 925 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; |
925 | 926 |
926 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); | 927 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); |
927 }; | 928 }; |
928 | 929 |
929 } // namespace content | 930 } // namespace content |
930 | 931 |
931 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 932 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
OLD | NEW |