Searched refs:sourceFrame (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/loader/
H A DFormState.cpp37 inline FormState::FormState(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger) argument
39 , m_sourceFrame(sourceFrame)
45 PassRefPtr<FormState> FormState::create(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger) argument
47 return adoptRef(new FormState(form, textFieldValuesToAdopt, sourceFrame, formSubmissionTrigger));
H A DFormState.h52 Frame* sourceFrame() const { return m_sourceFrame.get(); } function in class:WebCore::FormState
H A DNavigationScheduler.cpp214 Frame* requestingFrame = m_submission->state()->sourceFrame();
H A DFrameLoader.cpp311 ASSERT(submission->state()->sourceFrame() == m_frame);
1329 Frame* sourceFrame = formState ? formState->sourceFrame() : m_frame; local
1330 Frame* targetFrame = sourceFrame->loader()->findFrameForNavigation(request.frameName());
1331 if (targetFrame && targetFrame != sourceFrame) {
/external/webkit/Source/WebKit/chromium/src/
H A DStorageEventDispatcherChromium.cpp48 SecurityOrigin* origin, Frame* sourceFrame)
50 ASSERT(!sourceFrame); // Sad, but true.
46 dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* origin, Frame* sourceFrame) argument
H A DStorageAreaProxy.h49 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
50 virtual String removeItem(const String& key, Frame* sourceFrame);
51 virtual bool clear(Frame* sourceFrame);
55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
H A DStorageAreaProxy.cpp112 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
114 Page* page = sourceFrame->page();
124 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
132 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
140 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
149 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
/external/webkit/Source/WebCore/storage/
H A DStorageEventDispatcher.cpp41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
44 if (!sourceFrame)
47 Page* page = sourceFrame->page();
57 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
73 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
82 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
H A DStorageArea.h53 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
54 virtual String removeItem(const String& key, Frame* sourceFrame) = 0;
55 virtual bool clear(Frame* sourceFrame) = 0;
H A DStorageEventDispatcher.h43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
H A DStorageAreaImpl.h51 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
52 virtual String removeItem(const String& key, Frame* sourceFrame);
53 virtual bool clear(Frame* sourceFrame);
H A DStorageAreaSync.h59 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFormClient.cpp36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy* listener) argument
46 m_client.willSubmitForm(toAPI(page), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), toAPI(userData), toAPI(listener), m_client.clientInfo);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFormDelegate.m73 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
H A DWebFormDelegate.h62 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
/external/webkit/Source/WebCore/inspector/front-end/
H A DScriptsPanel.js328 var sourceFrame = this._sourceFileIdToSourceFrame[message.sourceFileId];
329 if (sourceFrame && sourceFrame.loaded)
330 sourceFrame.addMessageToSource(message.lineNumber, message.originalMessage);
337 var sourceFrame = this._sourceFileIdToSourceFrame[breakpoint.sourceFileId];
338 if (sourceFrame && sourceFrame.loaded)
339 sourceFrame.addBreakpoint(breakpoint.lineNumber, breakpoint.resolved, breakpoint.condition, breakpoint.enabled);
348 var sourceFrame = this._sourceFileIdToSourceFrame[breakpoint.sourceFileId];
349 if (sourceFrame
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageFormClient.h55 void willSubmitForm(WebPage*, WebCore::HTMLFormElement*, WebFrame*, WebFrame* sourceFrame, const Vector<std::pair<String, String> >&, RefPtr<APIObject>& userData);
H A DInjectedBundlePageFormClient.cpp86 void InjectedBundlePageFormClient::willSubmitForm(WebPage* page, HTMLFormElement* formElement, WebFrame* frame, WebFrame* sourceFrame, const Vector<std::pair<String, String> >& values, RefPtr<APIObject>& userData) argument
99 m_client.willSubmitForm(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), &userDataToPass, m_client.clientInfo);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebFormDelegate.idl95 //- (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener;
96 HRESULT willSubmitForm([in] IWebFrame* frame, [in] IWebFrame* sourceFrame, [in] IDOMElement* form, [in] IPropertyBag* values, [in] IWebFormSubmissionListener* listener);
/external/webkit/Source/WebKit/chromium/src/js/
H A DTests.js681 if (!view.sourceFrame._loaded) {
711 * @param {WebInspector.SourceFrame} sourceFrame
715 TestSuite.prototype._checkExecutionLine = function(sourceFrame, lineNumber, lineContent)
717 this.assertEquals(lineNumber, sourceFrame._executionLineNumber + 1, "Unexpected execution line number.");
718 this.assertEquals(lineContent, sourceFrame._textModel.line(lineNumber - 1), "Unexpected execution line text.");
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp701 WebFrame* sourceFrame = static_cast<WebFrameLoaderClient*>(formState->sourceFrame()->loader()->client())->webFrame(); local
705 webPage->injectedBundleFormClient().willSubmitForm(webPage, form, m_frame, sourceFrame, values, userData);
711 webPage->send(Messages::WebPageProxy::WillSubmitForm(m_frame->frameID(), sourceFrame->frameID(), valuesVector, listenerID, InjectedBundleUserMessageEncoder(userData.get())));
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h228 typedef void (*WKBundlePageWillSubmitFormCallback)(WKBundlePageRef page, WKBundleNodeHandleRef htmlFormElementHandle, WKBundleFrameRef frame, WKBundleFrameRef sourceFrame, WKDictionaryRef values, WKTypeRef* userData, const void* clientInfo);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.h124 typedef void (*WKPageWillSubmitFormCallback)(WKPageRef page, WKFrameRef frame, WKFrameRef sourceFrame, WKDictionaryRef values, WKTypeRef userData, WKFormSubmissionListenerRef listener, const void* clientInfo);
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp1575 COMPtr<WebFrame> sourceFrame(kit(formState->sourceFrame()));
1576 if (SUCCEEDED(formDelegate->willSubmitForm(this, sourceFrame.get(), formElement.get(), formValuesPropertyBag.get(), setUpPolicyListener(function).get())))
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm807 CallFormDelegate(getWebView(m_webFrame.get()), @selector(frame:sourceFrame:willSubmitForm:withValues:submissionListener:), m_webFrame.get(), kit(formState->sourceFrame()), kit(formState->form()), dictionary, setUpPolicyListener(function).get());

Completed in 670 milliseconds

12