| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/c/dev/ppb_find_dev.h" | 5 #include "ppapi/c/dev/ppb_find_dev.h" |
| 6 #include "ppapi/thunk/thunk.h" | 6 #include "ppapi/thunk/thunk.h" |
| 7 #include "ppapi/thunk/enter.h" | 7 #include "ppapi/thunk/enter.h" |
| 8 | 8 |
| 9 namespace ppapi { | 9 namespace ppapi { |
| 10 namespace thunk { | 10 namespace thunk { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 enter.functions()->SelectedFindResultChanged(instance, index); | 25 enter.functions()->SelectedFindResultChanged(instance, index); |
| 26 } | 26 } |
| 27 | 27 |
| 28 const PPB_Find_Dev g_ppb_find_thunk = { | 28 const PPB_Find_Dev g_ppb_find_thunk = { |
| 29 &NumberOfFindResultsChanged, | 29 &NumberOfFindResultsChanged, |
| 30 &SelectedFindResultChanged | 30 &SelectedFindResultChanged |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 } // namespace | 33 } // namespace |
| 34 | 34 |
| 35 const PPB_Find_Dev* GetPPB_Find_Dev_Thunk() { | 35 const PPB_Find_Dev_0_3* GetPPB_Find_Dev_0_3_Thunk() { |
| 36 return &g_ppb_find_thunk; | 36 return &g_ppb_find_thunk; |
| 37 } | 37 } |
| 38 | 38 |
| 39 } // namespace thunk | 39 } // namespace thunk |
| 40 } // namespace ppapi | 40 } // namespace ppapi |
| OLD | NEW |