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

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

Issue 1983913002: Test to see if we can bring in document data from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WebLocalFrameImpl::loadData Created 4 years, 7 months 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 } 127 }
128 128
129 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*) 129 void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(HTMLFormElement*)
130 { 130 {
131 } 131 }
132 132
133 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) 133 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*)
134 { 134 {
135 } 135 }
136 136
137 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& substituteData) 137 DocumentLoader* EmptyFrameLoaderClient::createDocumentLoader(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& substituteData, int initia tor)
138 { 138 {
139 return DocumentLoader::create(frame, request, substituteData); 139 return DocumentLoader::create(frame, request, substituteData);
140 } 140 }
141 141
142 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, const A tomicString&, HTMLFrameOwnerElement*) 142 LocalFrame* EmptyFrameLoaderClient::createFrame(const FrameLoadRequest&, const A tomicString&, HTMLFrameOwnerElement*)
143 { 143 {
144 return nullptr; 144 return nullptr;
145 } 145 }
146 146
147 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, const KURL&, co nst Vector<String>&, const Vector<String>&, const String&, bool, DetachedPluginP olicy) 147 Widget* EmptyFrameLoaderClient::createPlugin(HTMLPlugInElement*, const KURL&, co nst Vector<String>&, const Vector<String>&, const String&, bool, DetachedPluginP olicy)
(...skipping 19 matching lines...) Expand all
167 { 167 {
168 return nullptr; 168 return nullptr;
169 } 169 }
170 170
171 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac heHost(WebApplicationCacheHostClient*) 171 PassOwnPtr<WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCac heHost(WebApplicationCacheHostClient*)
172 { 172 {
173 return nullptr; 173 return nullptr;
174 } 174 }
175 175
176 } // namespace blink 176 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.h ('k') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698