| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "ppapi/cpp/extensions/dev/events_dev.h" | 5 #include "ppapi/cpp/extensions/dev/events_dev.h" |
| 6 | 6 |
| 7 #include "ppapi/c/extensions/dev/ppb_events_dev.h" | 7 #include "ppapi/c/extensions/dev/ppb_ext_events_dev.h" |
| 8 #include "ppapi/cpp/module_impl.h" | 8 #include "ppapi/cpp/module_impl.h" |
| 9 | 9 |
| 10 namespace pp { | 10 namespace pp { |
| 11 | 11 |
| 12 namespace { | 12 namespace { |
| 13 | 13 |
| 14 template <> const char* interface_name<PPB_Ext_Events_Dev_0_1>() { | 14 template <> const char* interface_name<PPB_Ext_Events_Dev_0_1>() { |
| 15 return PPB_EXT_EVENTS_DEV_INTERFACE_0_1; | 15 return PPB_EXT_EVENTS_DEV_INTERFACE_0_1; |
| 16 } | 16 } |
| 17 | 17 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 uint32_t listener_id) { | 34 uint32_t listener_id) { |
| 35 if (has_interface<PPB_Ext_Events_Dev_0_1>()) { | 35 if (has_interface<PPB_Ext_Events_Dev_0_1>()) { |
| 36 get_interface<PPB_Ext_Events_Dev_0_1>()->RemoveListener(instance, | 36 get_interface<PPB_Ext_Events_Dev_0_1>()->RemoveListener(instance, |
| 37 listener_id); | 37 listener_id); |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 | 40 |
| 41 } // namespace events | 41 } // namespace events |
| 42 } // namespace ext | 42 } // namespace ext |
| 43 } // namespace pp | 43 } // namespace pp |
| OLD | NEW |