Home
last modified time | relevance | path

Searched refs:InjectedBundleNodeHandle (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
DInjectedBundleNodeHandle.cpp51 typedef HashMap<Node*, InjectedBundleNodeHandle*> DOMHandleCache;
59 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::getOrCreate(JSContextRef, JSObjectRe… in getOrCreate()
65 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::getOrCreate(Node* node) in getOrCreate()
72 return PassRefPtr<InjectedBundleNodeHandle>(result.first->second); in getOrCreate()
74 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::create(node); in getOrCreate()
79 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::create(Node* node) in create()
81 return adoptRef(new InjectedBundleNodeHandle(node)); in create()
84 InjectedBundleNodeHandle::InjectedBundleNodeHandle(Node* node) in InjectedBundleNodeHandle() function in WebKit::InjectedBundleNodeHandle
89 InjectedBundleNodeHandle::~InjectedBundleNodeHandle() in ~InjectedBundleNodeHandle()
94 Node* InjectedBundleNodeHandle::coreNode() const in coreNode()
[all …]
DInjectedBundleNodeHandle.h45 class InjectedBundleNodeHandle : public APIObject {
49 static PassRefPtr<InjectedBundleNodeHandle> getOrCreate(JSContextRef, JSObjectRef);
50 static PassRefPtr<InjectedBundleNodeHandle> getOrCreate(WebCore::Node*);
52 virtual ~InjectedBundleNodeHandle();
57 PassRefPtr<InjectedBundleNodeHandle> document();
69 PassRefPtr<InjectedBundleNodeHandle> htmlTableCellElementCellAbove();
71 PassRefPtr<InjectedBundleNodeHandle> elementShadowRoot();
78 static PassRefPtr<InjectedBundleNodeHandle> create(WebCore::Node*);
79 InjectedBundleNodeHandle(WebCore::Node*);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundlePageFormClient.cpp46 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in textFieldDidBeginEditing()
55 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in textFieldDidEndEditing()
64 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in textDidChangeInTextField()
73 …RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(textAreaElemen… in textDidChangeInTextArea()
82 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in shouldPerformActionInTextField()
91 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(formElement); in willSubmitForm()
DInjectedBundlePageFullScreenClient.cpp56 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(element); in enterFullScreenForElement()
65 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(element); in exitFullScreenForElement()
DInjectedBundleHitTestResult.h37 class InjectedBundleNodeHandle; variable
48 PassRefPtr<InjectedBundleNodeHandle> nodeHandle() const;
DInjectedBundleNavigationAction.h59 InjectedBundleNodeHandle* formElement() const { return m_formElement.get(); } in formElement()
70 RefPtr<InjectedBundleNodeHandle> m_formElement;
DInjectedBundleHitTestResult.cpp47 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleHitTestResult::nodeHandle() const in nodeHandle()
49 return InjectedBundleNodeHandle::getOrCreate(m_hitTestResult.innerNonSharedNode()); in nodeHandle()
DInjectedBundlePageEditorClient.cpp60 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(node); in shouldInsertNode()
DInjectedBundleNavigationAction.cpp101 m_formElement = InjectedBundleNodeHandle::getOrCreate(formState->form()); in InjectedBundleNavigationAction()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundleNodeHandle.cpp39 return toAPI(InjectedBundleNodeHandle::APIType); in WKBundleNodeHandleGetTypeID()
44 …RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(contextRef, ob… in WKBundleNodeHandleCreate()
50 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(nodeHandleRef)->document(); in WKBundleNodeHandleCopyDocument()
66 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(elementHandleRef)->elementShadowRoot(); in WKBundleNodeHandleCopyElementShadowRoot()
97 …RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(htmlTableCellElementHandleRef)->htmlTableCell… in WKBundleNodeHandleCopyHTMLTableCellElementCellAbove()
DWKBundleAPICast.h49 class InjectedBundleNodeHandle; variable
65 WK_ADD_API_MAPPING(WKBundleNodeHandleRef, InjectedBundleNodeHandle) in WK_ADD_API_MAPPING()
DWKBundleNavigationAction.cpp65 RefPtr<InjectedBundleNodeHandle> formElement = toImpl(navigationActionRef)->formElement(); in WKBundleNavigationActionCopyFormElement()
DWKBundleHitTestResult.cpp43 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(hitTestResultRef)->nodeHandle(); in WKBundleHitTestResultCopyNodeHandle()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebFrame.h48 class InjectedBundleNodeHandle; variable
102 JSValueRef jsWrapperForWorld(InjectedBundleNodeHandle*, InjectedBundleScriptWorld*);
DWebFrame.cpp575 JSValueRef WebFrame::jsWrapperForWorld(InjectedBundleNodeHandle* nodeHandle, InjectedBundleScriptWo… in jsWrapperForWorld()
/external/webkit/Source/WebKit2/
DWebKit2.pro241 WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h \
455 WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp \
DGNUmakefile.am550 Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp \
551 Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h \
DChangeLog-2011-02-164982 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
6426 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: Ditto.
6427 (WebKit::InjectedBundleNodeHandle::renderRect): Ditto.
6428 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: Ditto.
7311 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
14768 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
14769 (WebKit::InjectedBundleNodeHandle::copyDocumentFrame):
14770 (WebKit::InjectedBundleNodeHandle::copyHTMLFrameElementContentFrame):
14771 (WebKit::InjectedBundleNodeHandle::copyHTMLIFrameElementContentFrame):
14772 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
[all …]
DChangeLog4532 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
4533 (WebKit::InjectedBundleNodeHandle::elementShadowRoot):
4534 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
8257 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
8258 (WebKit::InjectedBundleNodeHandle::htmlInputElementLastChangeWasUserEdit):
8259 (WebKit::InjectedBundleNodeHandle::htmlTextAreaElementLastChangeWasUserEdit):
8260 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
11101 InjectedBundleNodeHandle dies too early in WKBundleHitTestResultGetNodeHandle
11996 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
11997 (WebKit::InjectedBundleNodeHandle::document):
[all …]
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/
Dproject.pbxproj542 …F00FBA0C7 /* InjectedBundleNodeHandle.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4BEEA9120…
543 …00FBA0C7 /* InjectedBundleNodeHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC4BEEAA12…
1450 …7 /* InjectedBundleNodeHandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
1451 …* InjectedBundleNodeHandle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
2973 BC4BEEAA120A0A5F00FBA0C7 /* InjectedBundleNodeHandle.cpp */,
2974 BC4BEEA9120A0A5E00FBA0C7 /* InjectedBundleNodeHandle.h */,
3418 BC4BEEAB120A0A5F00FBA0C7 /* InjectedBundleNodeHandle.h in Headers */,
4031 BC4BEEAC120A0A5F00FBA0C7 /* InjectedBundleNodeHandle.cpp in Sources */,
/external/webkit/Tools/
DChangeLog6663 InjectedBundleNodeHandle dies too early in WKBundleHitTestResultGetNodeHandle.