Searched defs:sourceFrame (Results 1 - 10 of 10) sorted by relevance

/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 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.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/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);
H A DWebPageProxy.cpp1824 WebFrameProxy* sourceFrame = process()->webFrame(sourceFrameID); local
1825 MESSAGE_CHECK(sourceFrame);
1828 if (!m_formClient.willSubmitForm(this, frame, sourceFrame, textFieldValues.stringPairVector(), userData.get(), listener.get()))
/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));
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
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/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())));

Completed in 146 milliseconds