diff options
Diffstat (limited to 'WebKit/win/Interfaces')
-rw-r--r-- | WebKit/win/Interfaces/DOMPrivate.idl | 1 | ||||
-rw-r--r-- | WebKit/win/Interfaces/IWebDataSource.idl | 1 | ||||
-rw-r--r-- | WebKit/win/Interfaces/IWebPreferencesPrivate.idl | 3 | ||||
-rw-r--r-- | WebKit/win/Interfaces/IWebViewPrivate.idl | 2 | ||||
-rw-r--r-- | WebKit/win/Interfaces/WebKit.idl | 1 |
5 files changed, 7 insertions, 1 deletions
diff --git a/WebKit/win/Interfaces/DOMPrivate.idl b/WebKit/win/Interfaces/DOMPrivate.idl index 3365565..c3bb60e 100644 --- a/WebKit/win/Interfaces/DOMPrivate.idl +++ b/WebKit/win/Interfaces/DOMPrivate.idl @@ -47,6 +47,7 @@ interface IDOMElementPrivate : IUnknown HRESULT innerText([out, retval] BSTR* result); [local] HRESULT font(WebFontDescription* webFontDescription); HRESULT renderedImage([out, retval] HBITMAP* image); + [local] HRESULT markerTextForListItem([out, retval] BSTR* markerText); } /* diff --git a/WebKit/win/Interfaces/IWebDataSource.idl b/WebKit/win/Interfaces/IWebDataSource.idl index 15bea1a..dd78d7e 100644 --- a/WebKit/win/Interfaces/IWebDataSource.idl +++ b/WebKit/win/Interfaces/IWebDataSource.idl @@ -214,4 +214,5 @@ interface IWebDataSourcePrivate : IUnknown HRESULT overrideEncoding([out, retval] BSTR* encoding); HRESULT setOverrideEncoding([in] BSTR encoding); HRESULT mainDocumentError([out, retval] IWebError** error); + HRESULT setDeferMainResourceDataLoad([in] BOOL flag); } diff --git a/WebKit/win/Interfaces/IWebPreferencesPrivate.idl b/WebKit/win/Interfaces/IWebPreferencesPrivate.idl index 119c3ff..bca8d6f 100644 --- a/WebKit/win/Interfaces/IWebPreferencesPrivate.idl +++ b/WebKit/win/Interfaces/IWebPreferencesPrivate.idl @@ -115,4 +115,7 @@ interface IWebPreferencesPrivate : IUnknown HRESULT isDNSPrefetchingEnabled([out, retval] BOOL *enabled); HRESULT setDNSPrefetchingEnabled([in] BOOL enabled); + + HRESULT memoryInfoEnabled([out, retval] BOOL *enabled); + HRESULT setMemoryInfoEnabled([in] BOOL enabled); } diff --git a/WebKit/win/Interfaces/IWebViewPrivate.idl b/WebKit/win/Interfaces/IWebViewPrivate.idl index 352ae7e..0377406 100644 --- a/WebKit/win/Interfaces/IWebViewPrivate.idl +++ b/WebKit/win/Interfaces/IWebViewPrivate.idl @@ -237,4 +237,6 @@ interface IWebViewPrivate : IUnknown HRESULT paintScrollViewRectToContextAtPoint([in] RECT rect, [in] POINT pt, [in] OLE_HANDLE dc); [local] HRESULT reportException([in] JSContextRef context, [in] JSValueRef exception); + + [local] HRESULT elementFromJS([in] JSContextRef context, [in] JSValueRef nodeObject, [out, retval] IDOMElement** element); } diff --git a/WebKit/win/Interfaces/WebKit.idl b/WebKit/win/Interfaces/WebKit.idl index ce2f213..8938501 100644 --- a/WebKit/win/Interfaces/WebKit.idl +++ b/WebKit/win/Interfaces/WebKit.idl @@ -300,4 +300,3 @@ library WebKit [default] interface IWebUserContentURLPattern; } } - |