Changeset 221109 in webkit
- Timestamp:
- Aug 23, 2017, 3:11:11 PM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r221103 r221109 1 2017-08-23 Alex Christensen <achristensen@webkit.org> 2 3 Stop using PolicyCallback for new window policies 4 https://bugs.webkit.org/show_bug.cgi?id=175907 5 6 Reviewed by Andy Estes. 7 8 PolicyCallback is an artifact from the days before C++11. Let's use lambdas instead! 9 No change in behaviour. 10 11 * loader/PolicyCallback.cpp: 12 (WebCore::PolicyCallback::set): 13 (WebCore::PolicyCallback::call): 14 (WebCore::PolicyCallback::cancel): 15 * loader/PolicyCallback.h: 16 * loader/PolicyChecker.cpp: 17 (WebCore::PolicyChecker::checkNewWindowPolicy): 18 (WebCore::PolicyChecker::continueAfterNewWindowPolicy): Deleted. 19 * loader/PolicyChecker.h: 20 1 21 2017-08-23 Alex Christensen <achristensen@webkit.org> 2 22 -
trunk/Source/WebCore/loader/FrameLoader.cpp
r221103 r221109 1295 1295 if (!targetFrame && !frameName.isEmpty()) { 1296 1296 action = action.copyWithShouldOpenExternalURLsPolicy(shouldOpenExternalURLsPolicyToApply(m_frame, frameLoadRequest)); 1297 policyChecker().checkNewWindowPolicy( action, request, formState, frameName, [this, allowNavigationToInvalidURL, openerPolicy] (const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& action, bool shouldContinue) {1297 policyChecker().checkNewWindowPolicy(WTFMove(action), request, formState, frameName, [this, allowNavigationToInvalidURL, openerPolicy] (const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& action, bool shouldContinue) { 1298 1298 continueLoadAfterNewWindowPolicy(request, formState, frameName, action, shouldContinue, allowNavigationToInvalidURL, openerPolicy); 1299 1299 }); … … 1365 1365 if (request.shouldCheckNewWindowPolicy()) { 1366 1366 NavigationAction action { request.requester(), request.resourceRequest(), InitiatedByMainFrame::Unknown, NavigationType::Other, request.shouldOpenExternalURLsPolicy() }; 1367 policyChecker().checkNewWindowPolicy( action, request.resourceRequest(), nullptr, request.frameName(), [this] (const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& action, bool shouldContinue) {1367 policyChecker().checkNewWindowPolicy(WTFMove(action), request.resourceRequest(), nullptr, request.frameName(), [this] (const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& action, bool shouldContinue) { 1368 1368 continueLoadAfterNewWindowPolicy(request, formState, frameName, action, shouldContinue, AllowNavigationToInvalidURL::Yes, NewFrameOpenerPolicy::Suppress); 1369 1369 }); … … 2770 2770 } 2771 2771 2772 policyChecker().checkNewWindowPolicy( action, workingResourceRequest, WTFMove(formState), frameName, [this, allowNavigationToInvalidURL, openerPolicy] (const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& action, bool shouldContinue) {2772 policyChecker().checkNewWindowPolicy(WTFMove(action), workingResourceRequest, WTFMove(formState), frameName, [this, allowNavigationToInvalidURL, openerPolicy] (const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& action, bool shouldContinue) { 2773 2773 continueLoadAfterNewWindowPolicy(request, formState, frameName, action, shouldContinue, allowNavigationToInvalidURL, openerPolicy); 2774 2774 }); -
trunk/Source/WebCore/loader/PolicyCallback.cpp
r221103 r221109 46 46 47 47 m_navigationFunction = WTFMove(function); 48 m_newWindowFunction = nullptr;49 }50 51 void PolicyCallback::set(const ResourceRequest& request, FormState* formState, const String& frameName, const NavigationAction& navigationAction, NewWindowPolicyDecisionFunction&& function)52 {53 m_request = request;54 m_formState = formState;55 m_frameName = frameName;56 m_navigationAction = navigationAction;57 58 m_navigationFunction = nullptr;59 m_newWindowFunction = WTFMove(function);60 48 } 61 49 … … 64 52 if (m_navigationFunction) 65 53 m_navigationFunction(m_request, m_formState.get(), shouldContinue); 66 if (m_newWindowFunction)67 m_newWindowFunction(m_request, m_formState.get(), m_frameName, m_navigationAction, shouldContinue);68 54 } 69 55 … … 80 66 if (m_navigationFunction) 81 67 m_navigationFunction(m_request, m_formState.get(), false); 82 if (m_newWindowFunction)83 m_newWindowFunction(m_request, m_formState.get(), m_frameName, m_navigationAction, false);84 68 } 85 69 -
trunk/Source/WebCore/loader/PolicyCallback.h
r221103 r221109 43 43 44 44 using NavigationPolicyDecisionFunction = Function<void(const ResourceRequest&, FormState*, bool shouldContinue)>; 45 using NewWindowPolicyDecisionFunction = Function<void(const ResourceRequest&, FormState*, const String& frameName, const NavigationAction&, bool shouldContinue)>;46 45 47 46 class PolicyCallback { 48 47 public: 49 48 void set(const ResourceRequest&, FormState*, NavigationPolicyDecisionFunction&&); 50 void set(const ResourceRequest&, FormState*, const String& frameName, const NavigationAction&, NewWindowPolicyDecisionFunction&&);51 49 52 50 const ResourceRequest& request() const { return m_request; } … … 63 61 64 62 NavigationPolicyDecisionFunction m_navigationFunction; 65 NewWindowPolicyDecisionFunction m_newWindowFunction;66 63 }; 67 64 -
trunk/Source/WebCore/loader/PolicyChecker.cpp
r221103 r221109 154 154 } 155 155 156 void PolicyChecker::checkNewWindowPolicy( const NavigationAction& action, const ResourceRequest& request, FormState* formState, const String& frameName, NewWindowPolicyDecisionFunction function)156 void PolicyChecker::checkNewWindowPolicy(NavigationAction&& navigationAction, const ResourceRequest& request, FormState* formState, const String& frameName, NewWindowPolicyDecisionFunction function) 157 157 { 158 158 if (m_frame.document() && m_frame.document()->isSandboxed(SandboxPopups)) … … 162 162 return continueAfterNavigationPolicy(PolicyIgnore); 163 163 164 m_callback.set(request, formState, frameName, action, WTFMove(function)); 165 m_frame.loader().client().dispatchDecidePolicyForNewWindowAction(action, request, formState, frameName, [this](PolicyAction action) { 166 continueAfterNewWindowPolicy(action); 164 NavigationAction navigationActionCopy = navigationAction; 165 m_frame.loader().client().dispatchDecidePolicyForNewWindowAction(navigationActionCopy, request, formState, frameName, [frame = makeRef(m_frame), request, formState = makeRefPtr(formState), frameName, navigationAction = WTFMove(navigationAction), function = WTFMove(function)](PolicyAction policyAction) { 166 switch (policyAction) { 167 case PolicyDownload: 168 frame->loader().client().startDownload(request); 169 FALLTHROUGH; 170 case PolicyIgnore: 171 function({ }, nullptr, { }, { }, false); 172 break; 173 case PolicyUse: 174 function(request, formState.get(), frameName, navigationAction, true); 175 break; 176 } 177 ASSERT_NOT_REACHED(); 167 178 }); 168 179 } … … 225 236 } 226 237 227 void PolicyChecker::continueAfterNewWindowPolicy(PolicyAction policy)228 {229 PolicyCallback callback = WTFMove(m_callback);230 231 switch (policy) {232 case PolicyIgnore:233 callback.clearRequest();234 break;235 case PolicyDownload:236 m_frame.loader().client().startDownload(callback.request());237 callback.clearRequest();238 break;239 case PolicyUse:240 break;241 }242 243 callback.call(policy == PolicyUse);244 }245 246 238 void PolicyChecker::handleUnimplementablePolicy(const ResourceError& error) 247 239 { -
trunk/Source/WebCore/loader/PolicyChecker.h
r221103 r221109 48 48 class ResourceResponse; 49 49 50 using NewWindowPolicyDecisionFunction = WTF::Function<void(const ResourceRequest&, FormState*, const String& frameName, const NavigationAction&, bool shouldContinue)>; 51 50 52 class PolicyChecker { 51 53 WTF_MAKE_NONCOPYABLE(PolicyChecker); … … 56 58 void checkNavigationPolicy(const ResourceRequest&, bool didReceiveRedirectResponse, DocumentLoader*, FormState*, NavigationPolicyDecisionFunction); 57 59 void checkNavigationPolicy(const ResourceRequest&, bool didReceiveRedirectResponse, NavigationPolicyDecisionFunction); 58 void checkNewWindowPolicy( const NavigationAction&, const ResourceRequest&, FormState*, const String& frameName, NewWindowPolicyDecisionFunction);60 void checkNewWindowPolicy(NavigationAction&&, const ResourceRequest&, FormState*, const String& frameName, NewWindowPolicyDecisionFunction); 59 61 60 62 // FIXME: These are different. They could use better names. … … 85 87 private: 86 88 void continueAfterNavigationPolicy(PolicyAction); 87 void continueAfterNewWindowPolicy(PolicyAction);88 89 89 90 void handleUnimplementablePolicy(const ResourceError&);
Note:
See TracChangeset
for help on using the changeset viewer.