Commit 1b9e0184 authored by Richard Townsend's avatar Richard Townsend Committed by Commit Bot

rebaseline ichromeaccessible for Windows arm64

To rebaseline: copied x64 => arm64, ninja, executed suggested copy
command.

Change-Id: Ibf2e9f9d93d10c3f2946d5890c66e2956c576baf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2222349
Commit-Queue: Richard Townsend <richard.townsend@arm.com>
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#773310}
parent 56e0d049
/*********************************************************
DllData file -- generated by MIDL compiler
DO NOT ALTER THIS FILE
This file is regenerated by MIDL on every IDL file compile.
To completely reconstruct this file, delete it and rerun MIDL
on all the IDL files in this DLL, specifying this file for the
/dlldata command line option
*********************************************************/
#include <rpcproxy.h>
#ifdef __cplusplus
extern "C" {
#endif
EXTERN_PROXY_FILE( ichromeaccessible )
PROXYFILE_LIST_START
/* Start of list */
REFERENCE_PROXY_FILE( ichromeaccessible ),
/* End of list */
PROXYFILE_LIST_END
DLLDATA_ROUTINES( aProxyFileList, GET_DLL_CLSID )
#ifdef __cplusplus
} /*extern "C" */
#endif
/* end of generated dlldata file */
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 8.xx.xxxx */
/* at a redacted point in time
*/
/* Compiler settings for ../../ui/accessibility/platform/ichromeaccessible.idl:
Oicf, W1, Zp8, env=Win64 (32b run), target_arch=ARM64 8.01.0622
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
/* @@MIDL_FILE_HEADING( ) */
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include "rpc.h"
#include "rpcndr.h"
#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif /* __RPCNDR_H_VERSION__ */
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __ichromeaccessible_h__
#define __ichromeaccessible_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef __IChromeAccessibleDelegate_FWD_DEFINED__
#define __IChromeAccessibleDelegate_FWD_DEFINED__
typedef interface IChromeAccessibleDelegate IChromeAccessibleDelegate;
#endif /* __IChromeAccessibleDelegate_FWD_DEFINED__ */
#ifndef __IChromeAccessible_FWD_DEFINED__
#define __IChromeAccessible_FWD_DEFINED__
typedef interface IChromeAccessible IChromeAccessible;
#endif /* __IChromeAccessible_FWD_DEFINED__ */
/* header files for imported files */
#include "objidl.h"
#include "oaidl.h"
#ifdef __cplusplus
extern "C"{
#endif
/* interface __MIDL_itf_ichromeaccessible_0000_0000 */
/* [local] */
#define DISPID_CHROME_BULK_FETCH ( -1600 )
#define DISPID_CHROME_ON_BULK_FETCH_RESULT ( -1601 )
#define DISPID_CHROME_HIT_TEST ( -1602 )
#define DISPID_CHROME_ON_HIT_TEST_RESULT ( -1603 )
extern RPC_IF_HANDLE __MIDL_itf_ichromeaccessible_0000_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_ichromeaccessible_0000_0000_v0_0_s_ifspec;
#ifndef __IChromeAccessibleDelegate_INTERFACE_DEFINED__
#define __IChromeAccessibleDelegate_INTERFACE_DEFINED__
/* interface IChromeAccessibleDelegate */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IChromeAccessibleDelegate;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("0e3edc14-79f4-413f-b854-d3b6860d74a2")
IChromeAccessibleDelegate : public IUnknown
{
public:
virtual /* [id][propput] */ HRESULT STDMETHODCALLTYPE put_bulkFetchResult(
/* [in] */ LONG requestID,
/* [in] */ BSTR resultJson) = 0;
virtual /* [id][propput] */ HRESULT STDMETHODCALLTYPE put_hitTestResult(
/* [in] */ LONG requestID,
/* [in] */ IUnknown *result) = 0;
};
#else /* C style interface */
typedef struct IChromeAccessibleDelegateVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IChromeAccessibleDelegate * This,
/* [in] */ REFIID riid,
/* [annotation][iid_is][out] */
_COM_Outptr_ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IChromeAccessibleDelegate * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IChromeAccessibleDelegate * This);
/* [id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_bulkFetchResult )(
IChromeAccessibleDelegate * This,
/* [in] */ LONG requestID,
/* [in] */ BSTR resultJson);
/* [id][propput] */ HRESULT ( STDMETHODCALLTYPE *put_hitTestResult )(
IChromeAccessibleDelegate * This,
/* [in] */ LONG requestID,
/* [in] */ IUnknown *result);
END_INTERFACE
} IChromeAccessibleDelegateVtbl;
interface IChromeAccessibleDelegate
{
CONST_VTBL struct IChromeAccessibleDelegateVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IChromeAccessibleDelegate_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IChromeAccessibleDelegate_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IChromeAccessibleDelegate_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IChromeAccessibleDelegate_put_bulkFetchResult(This,requestID,resultJson) \
( (This)->lpVtbl -> put_bulkFetchResult(This,requestID,resultJson) )
#define IChromeAccessibleDelegate_put_hitTestResult(This,requestID,result) \
( (This)->lpVtbl -> put_hitTestResult(This,requestID,result) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __IChromeAccessibleDelegate_INTERFACE_DEFINED__ */
#ifndef __IChromeAccessible_INTERFACE_DEFINED__
#define __IChromeAccessible_INTERFACE_DEFINED__
/* interface IChromeAccessible */
/* [unique][uuid][object] */
EXTERN_C const IID IID_IChromeAccessible;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("6175bd95-3b2e-4ebc-bc51-9cab782bec92")
IChromeAccessible : public IUnknown
{
public:
virtual /* [id][propget] */ HRESULT STDMETHODCALLTYPE get_bulkFetch(
/* [in] */ BSTR inputJson,
/* [in] */ LONG requestID,
/* [in] */ IChromeAccessibleDelegate *delegate) = 0;
virtual /* [id][propget] */ HRESULT STDMETHODCALLTYPE get_hitTest(
/* [in] */ LONG screenPhysicalPixelX,
/* [in] */ LONG screenPhysicalPixelY,
/* [in] */ LONG requestID,
/* [in] */ IChromeAccessibleDelegate *delegate) = 0;
};
#else /* C style interface */
typedef struct IChromeAccessibleVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IChromeAccessible * This,
/* [in] */ REFIID riid,
/* [annotation][iid_is][out] */
_COM_Outptr_ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IChromeAccessible * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IChromeAccessible * This);
/* [id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_bulkFetch )(
IChromeAccessible * This,
/* [in] */ BSTR inputJson,
/* [in] */ LONG requestID,
/* [in] */ IChromeAccessibleDelegate *delegate);
/* [id][propget] */ HRESULT ( STDMETHODCALLTYPE *get_hitTest )(
IChromeAccessible * This,
/* [in] */ LONG screenPhysicalPixelX,
/* [in] */ LONG screenPhysicalPixelY,
/* [in] */ LONG requestID,
/* [in] */ IChromeAccessibleDelegate *delegate);
END_INTERFACE
} IChromeAccessibleVtbl;
interface IChromeAccessible
{
CONST_VTBL struct IChromeAccessibleVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IChromeAccessible_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IChromeAccessible_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IChromeAccessible_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IChromeAccessible_get_bulkFetch(This,inputJson,requestID,delegate) \
( (This)->lpVtbl -> get_bulkFetch(This,inputJson,requestID,delegate) )
#define IChromeAccessible_get_hitTest(This,screenPhysicalPixelX,screenPhysicalPixelY,requestID,delegate) \
( (This)->lpVtbl -> get_hitTest(This,screenPhysicalPixelX,screenPhysicalPixelY,requestID,delegate) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __IChromeAccessible_INTERFACE_DEFINED__ */
/* Additional Prototypes for ALL interfaces */
unsigned long __RPC_USER BSTR_UserSize( unsigned long *, unsigned long , BSTR * );
unsigned char * __RPC_USER BSTR_UserMarshal( unsigned long *, unsigned char *, BSTR * );
unsigned char * __RPC_USER BSTR_UserUnmarshal(unsigned long *, unsigned char *, BSTR * );
void __RPC_USER BSTR_UserFree( unsigned long *, BSTR * );
/* end of Additional Prototypes */
#ifdef __cplusplus
}
#endif
#endif
/* this ALWAYS GENERATED file contains the IIDs and CLSIDs */
/* link this file in with the server and any clients */
/* File created by MIDL compiler version 8.xx.xxxx */
/* at a redacted point in time
*/
/* Compiler settings for ../../ui/accessibility/platform/ichromeaccessible.idl:
Oicf, W1, Zp8, env=Win64 (32b run), target_arch=ARM64 8.01.0622
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
/* @@MIDL_FILE_HEADING( ) */
#pragma warning( disable: 4049 ) /* more than 64k source lines */
#ifdef __cplusplus
extern "C"{
#endif
#include <rpc.h>
#include <rpcndr.h>
#ifdef _MIDL_USE_GUIDDEF_
#ifndef INITGUID
#define INITGUID
#include <guiddef.h>
#undef INITGUID
#else
#include <guiddef.h>
#endif
#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
#else // !_MIDL_USE_GUIDDEF_
#ifndef __IID_DEFINED__
#define __IID_DEFINED__
typedef struct _IID
{
unsigned long x;
unsigned short s1;
unsigned short s2;
unsigned char c[8];
} IID;
#endif // __IID_DEFINED__
#ifndef CLSID_DEFINED
#define CLSID_DEFINED
typedef IID CLSID;
#endif // CLSID_DEFINED
#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
EXTERN_C __declspec(selectany) const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
#endif // !_MIDL_USE_GUIDDEF_
MIDL_DEFINE_GUID(IID, IID_IChromeAccessibleDelegate,0x0e3edc14,0x79f4,0x413f,0xb8,0x54,0xd3,0xb6,0x86,0x0d,0x74,0xa2);
MIDL_DEFINE_GUID(IID, IID_IChromeAccessible,0x6175bd95,0x3b2e,0x4ebc,0xbc,0x51,0x9c,0xab,0x78,0x2b,0xec,0x92);
#undef MIDL_DEFINE_GUID
#ifdef __cplusplus
}
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment