Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.cpp

Issue 2461043003: Fix for the RedirectTest.ClientServerServer test. (Closed)
Patch Set: More build errors Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 return NavigationPolicyIgnore; 136 return NavigationPolicyIgnore;
137 } 137 }
138 138
139 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) {} 139 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) {}
140 140
141 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) {} 141 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) {}
142 142
143 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader( 143 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader(
144 LocalFrame* frame, 144 LocalFrame* frame,
145 const ResourceRequest& request, 145 const ResourceRequest& request,
146 const SubstituteData& substituteData) { 146 const SubstituteData& substituteData,
147 return DocumentLoader::create(frame, request, substituteData); 147 bool clientRedirect) {
148 return DocumentLoader::create(frame, request, substituteData, clientRedirect);
148 } 149 }
149 150
150 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, 151 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&,
151 const AtomicString&, 152 const AtomicString&,
152 HTMLFrameOwnerElement*) { 153 HTMLFrameOwnerElement*) {
153 return nullptr; 154 return nullptr;
154 } 155 }
155 156
156 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, 157 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*,
157 const KURL&, 158 const KURL&,
(...skipping 21 matching lines...) Expand all
179 return nullptr; 180 return nullptr;
180 } 181 }
181 182
182 std::unique_ptr<WebApplicationCacheHost> 183 std::unique_ptr<WebApplicationCacheHost>
183 EmptyFrameLoaderClient::createApplicationCacheHost( 184 EmptyFrameLoaderClient::createApplicationCacheHost(
184 WebApplicationCacheHostClient*) { 185 WebApplicationCacheHostClient*) {
185 return nullptr; 186 return nullptr;
186 } 187 }
187 188
188 } // namespace blink 189 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698