| 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 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "ppapi/thunk/resource_creation_api.h" | 10 #include "ppapi/thunk/resource_creation_api.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 PP_Bool init_to_zero) OVERRIDE; | 66 PP_Bool init_to_zero) OVERRIDE; |
| 67 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance, | 67 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance, |
| 68 PP_InputEvent_Type type, | 68 PP_InputEvent_Type type, |
| 69 PP_TimeTicks time_stamp, | 69 PP_TimeTicks time_stamp, |
| 70 struct PP_Var text, | 70 struct PP_Var text, |
| 71 uint32_t segment_number, | 71 uint32_t segment_number, |
| 72 const uint32_t* segment_offsets, | 72 const uint32_t* segment_offsets, |
| 73 int32_t target_segment, | 73 int32_t target_segment, |
| 74 uint32_t selection_start, | 74 uint32_t selection_start, |
| 75 uint32_t selection_end) OVERRIDE; | 75 uint32_t selection_end) OVERRIDE; |
| 76 virtual PP_Resource CreateIsolatedFileSystem(PP_Instance instance, |
| 77 const char* fsid) OVERRIDE; |
| 76 virtual PP_Resource CreateKeyboardInputEvent( | 78 virtual PP_Resource CreateKeyboardInputEvent( |
| 77 PP_Instance instance, | 79 PP_Instance instance, |
| 78 PP_InputEvent_Type type, | 80 PP_InputEvent_Type type, |
| 79 PP_TimeTicks time_stamp, | 81 PP_TimeTicks time_stamp, |
| 80 uint32_t modifiers, | 82 uint32_t modifiers, |
| 81 uint32_t key_code, | 83 uint32_t key_code, |
| 82 PP_Var character_text) OVERRIDE; | 84 PP_Var character_text) OVERRIDE; |
| 83 virtual PP_Resource CreateMouseInputEvent( | 85 virtual PP_Resource CreateMouseInputEvent( |
| 84 PP_Instance instance, | 86 PP_Instance instance, |
| 85 PP_InputEvent_Type type, | 87 PP_InputEvent_Type type, |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 PP_Instance instance) OVERRIDE; | 131 PP_Instance instance) OVERRIDE; |
| 130 | 132 |
| 131 private: | 133 private: |
| 132 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 134 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 133 }; | 135 }; |
| 134 | 136 |
| 135 } // namespace ppapi | 137 } // namespace ppapi |
| 136 } // namespace webkit | 138 } // namespace webkit |
| 137 | 139 |
| 138 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 140 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |