Chromium Code Reviews| Index: ppapi/thunk/ppb_alarms_dev_thunk.cc |
| diff --git a/ppapi/thunk/ppb_alarms_dev_thunk.cc b/ppapi/thunk/ppb_alarms_dev_thunk.cc |
| index 2d2ae14b89ffc067fa514e45eae6cec71919b4a0..1c6cfdbde63693d092d884d46a0e7fd07f7095aa 100644 |
| --- a/ppapi/thunk/ppb_alarms_dev_thunk.cc |
| +++ b/ppapi/thunk/ppb_alarms_dev_thunk.cc |
| @@ -48,13 +48,9 @@ int32_t GetAll(PP_Instance instance, |
| return enter.SetResult(PP_ERROR_FAILED); |
| } |
| -void Clear(PP_Instance instance, PP_Var name) { |
| - NOTIMPLEMENTED(); |
| -} |
| +void Clear(PP_Instance instance, PP_Var name) { NOTIMPLEMENTED(); } |
| -void ClearAll(PP_Instance instance) { |
| - NOTIMPLEMENTED(); |
| -} |
| +void ClearAll(PP_Instance instance) { NOTIMPLEMENTED(); } |
| uint32_t AddOnAlarmListener(PP_Instance instance, |
| PP_Alarms_OnAlarm_Dev callback, |
| @@ -64,13 +60,7 @@ uint32_t AddOnAlarmListener(PP_Instance instance, |
| } |
| const PPB_Alarms_Dev_0_1 g_ppb_alarms_dev_0_1_thunk = { |
| - &Create, |
| - &Get, |
| - &GetAll, |
| - &Clear, |
| - &ClearAll, |
| - &AddOnAlarmListener |
| -}; |
| + &Create, &Get, &GetAll, &Clear, &ClearAll, &AddOnAlarmListener}; |
|
teravest
2014/04/16 15:19:16
I'd prefer that all of these still got their own l
|
| } // namespace |