| 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 | 5 |
| 6 label Chrome { | 6 label Chrome { |
| 7 M27 = 0.1 | 7 M27 = 0.1 |
| 8 }; | 8 }; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 const char* event_name, | 78 const char* event_name, |
| 79 PP_Ext_GenericFuncType func, | 79 PP_Ext_GenericFuncType func, |
| 80 void* user_data) { | 80 void* user_data) { |
| 81 struct PP_Ext_EventListener listener; | 81 struct PP_Ext_EventListener listener; |
| 82 listener.event_name = event_name; | 82 listener.event_name = event_name; |
| 83 listener.func = func; | 83 listener.func = func; |
| 84 listener.user_data = user_data; | 84 listener.user_data = user_data; |
| 85 return listener; | 85 return listener; |
| 86 } | 86 } |
| 87 #endinl | 87 #endinl |
| OLD | NEW |