| Index: ppapi/thunk/resource_creation_api.h
|
| diff --git a/ppapi/thunk/resource_creation_api.h b/ppapi/thunk/resource_creation_api.h
|
| index 0c3dd420c276de207c4d84ca626a54a1ddef5311..5cafbeed04cfd35a7401646cfef9816553077cb1 100644
|
| --- a/ppapi/thunk/resource_creation_api.h
|
| +++ b/ppapi/thunk/resource_creation_api.h
|
| @@ -49,9 +49,8 @@ class ResourceCreationAPI {
|
| virtual ~ResourceCreationAPI() {}
|
|
|
| virtual PP_Resource CreateFileIO(PP_Instance instance) = 0;
|
| - virtual PP_Resource CreateFileRef(
|
| - PP_Instance instance,
|
| - const FileRefCreateInfo& serialized) = 0;
|
| + virtual PP_Resource CreateFileRef(PP_Instance instance,
|
| + const FileRefCreateInfo& serialized) = 0;
|
| virtual PP_Resource CreateFileSystem(PP_Instance instance,
|
| PP_FileSystemType type) = 0;
|
| virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
|
| @@ -70,14 +69,13 @@ class ResourceCreationAPI {
|
| uint32_t modifiers,
|
| uint32_t key_code,
|
| struct PP_Var character_text) = 0;
|
| - virtual PP_Resource CreateKeyboardInputEvent_1_2(
|
| - PP_Instance instance,
|
| - PP_InputEvent_Type type,
|
| - PP_TimeTicks time_stamp,
|
| - uint32_t modifiers,
|
| - uint32_t key_code,
|
| - struct PP_Var character_text,
|
| - struct PP_Var code) = 0;
|
| + virtual PP_Resource CreateKeyboardInputEvent_1_2(PP_Instance instance,
|
| + PP_InputEvent_Type type,
|
| + PP_TimeTicks time_stamp,
|
| + uint32_t modifiers,
|
| + uint32_t key_code,
|
| + struct PP_Var character_text,
|
| + struct PP_Var code) = 0;
|
| virtual PP_Resource CreateMouseInputEvent(
|
| PP_Instance instance,
|
| PP_InputEvent_Type type,
|
| @@ -87,25 +85,22 @@ class ResourceCreationAPI {
|
| const PP_Point* mouse_position,
|
| int32_t click_count,
|
| const PP_Point* mouse_movement) = 0;
|
| - virtual PP_Resource CreateTouchInputEvent(
|
| - PP_Instance instance,
|
| - PP_InputEvent_Type type,
|
| - PP_TimeTicks time_stamp,
|
| - uint32_t modifiers) = 0;
|
| + virtual PP_Resource CreateTouchInputEvent(PP_Instance instance,
|
| + PP_InputEvent_Type type,
|
| + PP_TimeTicks time_stamp,
|
| + uint32_t modifiers) = 0;
|
| virtual PP_Resource CreateTrueTypeFont(
|
| PP_Instance instance,
|
| const PP_TrueTypeFontDesc_Dev* desc) = 0;
|
| virtual PP_Resource CreateURLLoader(PP_Instance instance) = 0;
|
| - virtual PP_Resource CreateURLRequestInfo(
|
| - PP_Instance instance) = 0;
|
| + virtual PP_Resource CreateURLRequestInfo(PP_Instance instance) = 0;
|
|
|
| - virtual PP_Resource CreateWheelInputEvent(
|
| - PP_Instance instance,
|
| - PP_TimeTicks time_stamp,
|
| - uint32_t modifiers,
|
| - const PP_FloatPoint* wheel_delta,
|
| - const PP_FloatPoint* wheel_ticks,
|
| - PP_Bool scroll_by_page) = 0;
|
| + virtual PP_Resource CreateWheelInputEvent(PP_Instance instance,
|
| + PP_TimeTicks time_stamp,
|
| + uint32_t modifiers,
|
| + const PP_FloatPoint* wheel_delta,
|
| + const PP_FloatPoint* wheel_ticks,
|
| + PP_Bool scroll_by_page) = 0;
|
|
|
| virtual PP_Resource CreateAudio1_0(PP_Instance instance,
|
| PP_Resource config_id,
|
| @@ -184,10 +179,9 @@ class ResourceCreationAPI {
|
| PP_Bool vertical) = 0;
|
| virtual PP_Resource CreateTalk(PP_Instance instance) = 0;
|
| virtual PP_Resource CreateVideoCapture(PP_Instance instance) = 0;
|
| - virtual PP_Resource CreateVideoDecoder(
|
| - PP_Instance instance,
|
| - PP_Resource context3d_id,
|
| - PP_VideoDecoder_Profile profile) = 0;
|
| + virtual PP_Resource CreateVideoDecoder(PP_Instance instance,
|
| + PP_Resource context3d_id,
|
| + PP_VideoDecoder_Profile profile) = 0;
|
| #endif // !defined(OS_NACL)
|
|
|
| static const ApiID kApiID = API_ID_RESOURCE_CREATION;
|
|
|