HomeSort by relevance Sort by last modified time
    Searched full:formstate (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/webkit/Source/WebCore/loader/
FormState.cpp 30 #include "FormState.h"
37 inline FormState::FormState(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
45 PassRefPtr<FormState> FormState::create(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
47 return adoptRef(new FormState(form, textFieldValuesToAdopt, sourceFrame, formSubmissionTrigger));
PolicyCallback.h 41 class FormState;
44 const ResourceRequest&, PassRefPtr<FormState>, bool shouldContinue);
46 const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&, bool shouldContinue);
55 void set(const ResourceRequest&, PassRefPtr<FormState>,
57 void set(const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&,
70 RefPtr<FormState> m_formState;
FormState.h 46 class FormState : public RefCounted<FormState> {
48 static PassRefPtr<FormState> create(PassRefPtr<HTMLFormElement>, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame>, FormSubmissionTrigger);
56 FormState(PassRefPtr<HTMLFormElement>, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame>, FormSubmissionTrigger);
PolicyCallback.cpp 34 #include "FormState.h"
61 void PolicyCallback::set(const ResourceRequest& request, PassRefPtr<FormState> formState,
65 m_formState = formState;
74 void PolicyCallback::set(const ResourceRequest& request, PassRefPtr<FormState> formState,
78 m_formState = formState;
PolicyChecker.cpp 35 #include "FormState.h"
57 PassRefPtr<FormState> formState, NavigationPolicyDecisionFunction function, void* argument)
84 m_callback.set(request, formState.get(), function, argument);
88 action, request, formState);
93 const ResourceRequest& request, PassRefPtr<FormState> formState, const String& frameName, void* argument)
95 m_callback.set(request, formState, frameName, action, function, argument);
97 action, request, formState, frameName);
FormSubmission.h 34 #include "FormState.h"
99 FormState* state() const { return m_formState.get(); }
111 FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
118 RefPtr<FormState> m_formState;
PolicyChecker.h 42 class FormState;
53 void checkNavigationPolicy(const ResourceRequest&, DocumentLoader*, PassRefPtr<FormState>, NavigationPolicyDecisionFunction, void* argument);
55 void checkNewWindowPolicy(const NavigationAction&, NewWindowPolicyDecisionFunction, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, void* argument);
FormSubmission.cpp 39 #include "FormState.h"
124 inline FormSubmission::FormSubmission(Method method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState> state, PassRefPtr<FormData> data, const String& boundary, bool lockHistory, PassRefPtr<Event> event)
209 RefPtr<FormState> formState = FormState::create(form, formValues, document->frame(), trigger);
210 return adoptRef(new FormSubmission(copiedAttributes.method(), actionURL, targetOrBaseTarget, encodingType, formState.release(), formData.release(), boundary, lockHistory, event));
FrameLoader.h 61 class FormState;
117 PassRefPtr<Event>, PassRefPtr<FormState>, ReferrerPolicy);
367 static void callContinueLoadAfterNavigationPolicy(void*, const ResourceRequest&, PassRefPtr<FormState>, bool shouldContinue);
368 static void callContinueLoadAfterNewWindowPolicy(void*, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&, bool shouldContinue);
369 static void callContinueFragmentScrollAfterNavigationPolicy(void*, const ResourceRequest&, PassRefPtr<FormState>, bool shouldContinue);
373 void continueLoadAfterNavigationPolicy(const ResourceRequest&, PassRefPtr<FormState>, bool shouldContinue);
374 void continueLoadAfterNewWindowPolicy(const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&, bool shouldContinue);
396 void loadWithDocumentLoader(DocumentLoader*, FrameLoadType, PassRefPtr<FormState>); // Calls continueLoadAfterNavigationPolicy
400 bool lockHistory, FrameLoadType, PassRefPtr<FormState>);
403 const String& frameName, bool lockHistory, FrameLoadType, PassRefPtr<Event>, PassRefPtr<FormState>);
    [all...]
MainResourceLoader.h 45 class FormState;
92 static void callContinueAfterNavigationPolicy(void*, const ResourceRequest&, PassRefPtr<FormState>, bool shouldContinue);
FrameLoader.cpp 56 #include "FormState.h"
    [all...]
FrameLoaderClient.h 61 class FormState;
157 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName) = 0;
158 virtual void dispatchDecidePolicyForNavigationAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>) = 0;
164 virtual void dispatchWillSubmitForm(FramePolicyFunction, PassRefPtr<FormState>) = 0;
NavigationScheduler.h 44 class FormState;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleNavigationAction.cpp 83 PassRefPtr<InjectedBundleNavigationAction> InjectedBundleNavigationAction::create(WebFrame* frame, const NavigationAction& action, PassRefPtr<FormState> formState)
85 return adoptRef(new InjectedBundleNavigationAction(frame, action, formState));
88 InjectedBundleNavigationAction::InjectedBundleNavigationAction(WebFrame* frame, const NavigationAction& navigationAction, PassRefPtr<FormState> prpFormState)
98 RefPtr<FormState> formState = prpFormState;
99 if (formState) {
100 ASSERT(formState->form());
101 m_formElement = InjectedBundleNodeHandle::getOrCreate(formState->form());
InjectedBundleNavigationAction.h 38 class FormState;
50 static PassRefPtr<InjectedBundleNavigationAction> create(WebFrame*, const WebCore::NavigationAction&, PassRefPtr<WebCore::FormState>);
62 InjectedBundleNavigationAction(WebFrame*, const WebCore::NavigationAction&, PassRefPtr<WebCore::FormState>);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FrameLoaderClientEfl.h 44 class FormState;
119 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, WTF::PassRefPtr<FormState>, const String& frameName);
120 virtual void dispatchDecidePolicyForNavigationAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, WTF::PassRefPtr<FormState>);
126 virtual void dispatchWillSubmitForm(FramePolicyFunction, WTF::PassRefPtr<FormState>);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 45 class FormState;
116 virtual void dispatchWillSubmitForm(FramePolicyFunction, PassRefPtr<FormState>);
215 PassRefPtr<FormState>, const String&);
219 PassRefPtr<FormState>);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.h 48 class FormState;
118 virtual void dispatchWillSubmitForm(FramePolicyFunction, PassRefPtr<FormState>);
202 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction function, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>, const String&);
203 virtual void dispatchDecidePolicyForNavigationAction(FramePolicyFunction function, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.h 103 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName);
104 virtual void dispatchDecidePolicyForNavigationAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>);
109 virtual void dispatchWillSubmitForm(FramePolicyFunction, PassRefPtr<FormState>);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.h 98 virtual void dispatchDecidePolicyForNewWindowAction(WebCore::FramePolicyFunction, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, WTF::PassRefPtr<WebCore::FormState>, const WTF::String& frameName);
99 virtual void dispatchDecidePolicyForNavigationAction(WebCore::FramePolicyFunction, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, WTF::PassRefPtr<WebCore::FormState>);
105 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, WTF::PassRefPtr<WebCore::FormState>);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.h 93 virtual void dispatchDecidePolicyForNewWindowAction(WebCore::FramePolicyFunction, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, WTF::PassRefPtr<WebCore::FormState>, const WTF::String& frameName);
94 virtual void dispatchDecidePolicyForNavigationAction(WebCore::FramePolicyFunction, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, WTF::PassRefPtr<WebCore::FormState>);
100 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, WTF::PassRefPtr<WebCore::FormState>);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 120 const WebCore::NavigationAction&, const WebCore::ResourceRequest&, PassRefPtr<WebCore::FormState>, const WTF::String& frameName);
122 const WebCore::NavigationAction&, const WebCore::ResourceRequest&, PassRefPtr<WebCore::FormState>);
128 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, PassRefPtr<WebCore::FormState>);
240 NSDictionary *actionDictionary(const WebCore::NavigationAction&, PassRefPtr<WebCore::FormState>) const;
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.h 53 class FormState;
127 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction function, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, PassRefPtr<FormState>, const WTF::String&);
128 virtual void dispatchDecidePolicyForNavigationAction(FramePolicyFunction function, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, PassRefPtr<FormState>);
134 virtual void dispatchWillSubmitForm(FramePolicyFunction, PassRefPtr<FormState>);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 53 #include <WebCore/FormState.h>
610 void WebFrameLoaderClient::dispatchDecidePolicyForNewWindowAction(FramePolicyFunction function, const NavigationAction& navigationAction, const ResourceRequest& request, PassRefPtr<FormState> formState, const String& frameName)
618 RefPtr<InjectedBundleNavigationAction> action = InjectedBundleNavigationAction::create(m_frame, navigationAction, formState);
634 void WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction(FramePolicyFunction function, const NavigationAction& navigationAction, const ResourceRequest& request, PassRefPtr<FormState> formState)
648 RefPtr<InjectedBundleNavigationAction> action = InjectedBundleNavigationAction::create(m_frame, navigationAction, formState);
691 void WebFrameLoaderClient::dispatchWillSubmitForm(FramePolicyFunction function, PassRefPtr<FormState> prpFormState)
698 RefPtr<FormState> formState = prpFormState
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.h 119 virtual void dispatchDecidePolicyForNewWindowAction(WebCore::FramePolicyFunction function, const WebCore::NavigationAction& action, const WebCore::ResourceRequest& request, PassRefPtr<WebCore::FormState> form_state, const WTF::String& frame_name);
120 virtual void dispatchDecidePolicyForNavigationAction(WebCore::FramePolicyFunction function, const WebCore::NavigationAction& action, const WebCore::ResourceRequest& request, PassRefPtr<WebCore::FormState> form_state);
124 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, PassRefPtr<WebCore::FormState>);

Completed in 804 milliseconds

1 2 3