summaryrefslogtreecommitdiffstats
path: root/WebKit/win/Interfaces/DOMPrivate.idl
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-12-15 10:12:09 +0000
committerSteve Block <steveblock@google.com>2009-12-17 17:41:10 +0000
commit643ca7872b450ea4efacab6188849e5aac2ba161 (patch)
tree6982576c228bcd1a7efe98afed544d840751094c /WebKit/win/Interfaces/DOMPrivate.idl
parentd026980fde6eb3b01c1fe49441174e89cd1be298 (diff)
downloadexternal_webkit-643ca7872b450ea4efacab6188849e5aac2ba161.zip
external_webkit-643ca7872b450ea4efacab6188849e5aac2ba161.tar.gz
external_webkit-643ca7872b450ea4efacab6188849e5aac2ba161.tar.bz2
Merge webkit.org at r51976 : Initial merge by git.
Change-Id: Ib0e7e2f0fb4bee5a186610272edf3186f0986b43
Diffstat (limited to 'WebKit/win/Interfaces/DOMPrivate.idl')
-rw-r--r--WebKit/win/Interfaces/DOMPrivate.idl10
1 files changed, 7 insertions, 3 deletions
diff --git a/WebKit/win/Interfaces/DOMPrivate.idl b/WebKit/win/Interfaces/DOMPrivate.idl
index 7210943..3365565 100644
--- a/WebKit/win/Interfaces/DOMPrivate.idl
+++ b/WebKit/win/Interfaces/DOMPrivate.idl
@@ -51,9 +51,8 @@ interface IDOMElementPrivate : IUnknown
/*
All the methods in this category are used by Safari forms autofill and should not be used for any other purpose.
- They are stopgap measures until we finish transitioning form controls to not use NSView. Each one should become
- replaceable by public DOM API, and when that happens Safari will switch to implementations using that public API,
- and these will be deleted.
+ Each one should eventually be replaced by public DOM API, and when that happens Safari will switch to implementations
+ using that public API, and these will be deleted.
@interface DOMHTMLInputElement(FormsAutoFillTransition)
*/
@@ -89,6 +88,11 @@ interface IFormsAutoFillTransition : IUnknown
- (void)_setAutofilled:(BOOL)filled;
*/
HRESULT setAutofilled([in] BOOL filled);
+
+ /*
+ - (BOOL)_isAutofilled;
+ */
+ HRESULT isAutofilled([out, retval] BOOL* result);
}
/*