OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // From dev/ppb_widget_dev.idl modified Fri Nov 16 11:26:06 2012. | 5 // From dev/ppb_widget_dev.idl modified Tue Nov 20 09:31:13 2012. |
yzshen1
2012/11/20 21:01:26
Why this is changed?
raymes
2012/11/20 23:40:32
I'm not sure. generator.py decided to update it. I
| |
6 | 6 |
7 #include "ppapi/c/dev/ppb_widget_dev.h" | 7 #include "ppapi/c/dev/ppb_widget_dev.h" |
8 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
9 #include "ppapi/shared_impl/tracked_callback.h" | 9 #include "ppapi/shared_impl/tracked_callback.h" |
10 #include "ppapi/thunk/enter.h" | 10 #include "ppapi/thunk/enter.h" |
11 #include "ppapi/thunk/ppb_instance_api.h" | 11 #include "ppapi/thunk/ppb_instance_api.h" |
12 #include "ppapi/thunk/ppb_widget_api.h" | 12 #include "ppapi/thunk/ppb_widget_api.h" |
13 #include "ppapi/thunk/resource_creation_api.h" | 13 #include "ppapi/thunk/resource_creation_api.h" |
14 #include "ppapi/thunk/thunk.h" | 14 #include "ppapi/thunk/thunk.h" |
15 | 15 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 const PPB_Widget_Dev_0_3* GetPPB_Widget_Dev_0_3_Thunk() { | 80 const PPB_Widget_Dev_0_3* GetPPB_Widget_Dev_0_3_Thunk() { |
81 return &g_ppb_widget_dev_thunk_0_3; | 81 return &g_ppb_widget_dev_thunk_0_3; |
82 } | 82 } |
83 | 83 |
84 const PPB_Widget_Dev_0_4* GetPPB_Widget_Dev_0_4_Thunk() { | 84 const PPB_Widget_Dev_0_4* GetPPB_Widget_Dev_0_4_Thunk() { |
85 return &g_ppb_widget_dev_thunk_0_4; | 85 return &g_ppb_widget_dev_thunk_0_4; |
86 } | 86 } |
87 | 87 |
88 } // namespace thunk | 88 } // namespace thunk |
89 } // namespace ppapi | 89 } // namespace ppapi |
OLD | NEW |