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/thunk/enter.h" | 5 #include "ppapi/thunk/enter.h" |
6 #include "ppapi/thunk/thunk.h" | 6 #include "ppapi/thunk/thunk.h" |
7 #include "ppapi/thunk/ppb_text_input_api.h" | 7 #include "ppapi/thunk/ppb_text_input_api.h" |
8 | 8 |
9 namespace ppapi { | 9 namespace ppapi { |
10 namespace thunk { | 10 namespace thunk { |
(...skipping 21 matching lines...) Expand all Loading... |
32 } | 32 } |
33 | 33 |
34 const PPB_TextInput_Dev g_ppb_textinput_thunk = { | 34 const PPB_TextInput_Dev g_ppb_textinput_thunk = { |
35 &SetTextInputType, | 35 &SetTextInputType, |
36 &UpdateCaretPosition, | 36 &UpdateCaretPosition, |
37 &CancelCompositionText, | 37 &CancelCompositionText, |
38 }; | 38 }; |
39 | 39 |
40 } // namespace | 40 } // namespace |
41 | 41 |
42 const PPB_TextInput_Dev* GetPPB_TextInput_Dev_Thunk() { | 42 const PPB_TextInput_Dev_0_1* GetPPB_TextInput_Dev_0_1_Thunk() { |
43 return &g_ppb_textinput_thunk; | 43 return &g_ppb_textinput_thunk; |
44 } | 44 } |
45 | 45 |
46 } // namespace thunk | 46 } // namespace thunk |
47 } // namespace ppapi | 47 } // namespace ppapi |
OLD | NEW |