| 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 virtual PP_Var GetDocumentURL(PP_Instance instance, | 435 virtual PP_Var GetDocumentURL(PP_Instance instance, |
| 436 PP_URLComponents_Dev* components) OVERRIDE; | 436 PP_URLComponents_Dev* components) OVERRIDE; |
| 437 virtual PP_Var GetPluginInstanceURL( | 437 virtual PP_Var GetPluginInstanceURL( |
| 438 PP_Instance instance, | 438 PP_Instance instance, |
| 439 PP_URLComponents_Dev* components) OVERRIDE; | 439 PP_URLComponents_Dev* components) OVERRIDE; |
| 440 virtual PP_Var GetPluginReferrerURL( | 440 virtual PP_Var GetPluginReferrerURL( |
| 441 PP_Instance instance, | 441 PP_Instance instance, |
| 442 PP_URLComponents_Dev* components) OVERRIDE; | 442 PP_URLComponents_Dev* components) OVERRIDE; |
| 443 | 443 |
| 444 // PPB_ContentDecryptor_Private implementation. | 444 // PPB_ContentDecryptor_Private implementation. |
| 445 virtual void NeedKey(PP_Instance instance, | |
| 446 PP_Var key_system, | |
| 447 PP_Var session_id, | |
| 448 PP_Var init_data) OVERRIDE; | |
| 449 virtual void KeyAdded(PP_Instance instance, | 445 virtual void KeyAdded(PP_Instance instance, |
| 450 PP_Var key_system, | 446 PP_Var key_system, |
| 451 PP_Var session_id) OVERRIDE; | 447 PP_Var session_id) OVERRIDE; |
| 452 virtual void KeyMessage(PP_Instance instance, | 448 virtual void KeyMessage(PP_Instance instance, |
| 453 PP_Var key_system, | 449 PP_Var key_system, |
| 454 PP_Var session_id, | 450 PP_Var session_id, |
| 455 PP_Var message, | 451 PP_Var message, |
| 456 PP_Var default_url) OVERRIDE; | 452 PP_Var default_url) OVERRIDE; |
| 457 virtual void KeyError(PP_Instance instance, | 453 virtual void KeyError(PP_Instance instance, |
| 458 PP_Var key_system, | 454 PP_Var key_system, |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 | 859 |
| 864 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_; | 860 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_; |
| 865 | 861 |
| 866 friend class PpapiPluginInstanceTest; | 862 friend class PpapiPluginInstanceTest; |
| 867 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); | 863 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); |
| 868 }; | 864 }; |
| 869 | 865 |
| 870 } // namespace content | 866 } // namespace content |
| 871 | 867 |
| 872 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 868 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| OLD | NEW |