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

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

Issue 838903002: Replicate sandbox flags for OOPIF (Blink part 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iframe-sandbox-flags-part1
Patch Set: Remove old createLocalChild Created 5 years, 11 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*) 115 void EmptyFrameLoaderClient::dispatchWillSubmitForm(HTMLFormElement*)
116 { 116 {
117 } 117 }
118 118
119 PassRefPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoader(LocalFra me* frame, const ResourceRequest& request, const SubstituteData& substituteData) 119 PassRefPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoader(LocalFra me* frame, const ResourceRequest& request, const SubstituteData& substituteData)
120 { 120 {
121 return DocumentLoader::create(frame, request, substituteData); 121 return DocumentLoader::create(frame, request, substituteData);
122 } 122 }
123 123
124 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const KUR L&, const AtomicString&, HTMLFrameOwnerElement*, ContentSecurityPolicyDispositio n) 124 PassRefPtrWillBeRawPtr<LocalFrame> EmptyFrameLoaderClient::createFrame(const KUR L&, const AtomicString&, HTMLFrameOwnerElement*, ContentSecurityPolicyDispositio n, SandboxFlags)
125 { 125 {
126 return nullptr; 126 return nullptr;
127 } 127 }
128 128
129 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector <String>& paramValues, const String& mimeType, bool loadManually) 129 PassOwnPtrWillBeRawPtr<PluginPlaceholder> EmptyFrameLoaderClient::createPluginPl aceholder(Document&, const KURL&, const Vector<String>& paramNames, const Vector <String>& paramValues, const String& mimeType, bool loadManually)
130 { 130 {
131 return nullptr; 131 return nullptr;
132 } 132 }
133 133
134 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String& , bool, DetachedPluginPolicy) 134 PassRefPtrWillBeRawPtr<Widget> EmptyFrameLoaderClient::createPlugin(HTMLPlugInEl ement*, const KURL&, const Vector<String>&, const Vector<String>&, const String& , bool, DetachedPluginPolicy)
(...skipping 23 matching lines...) Expand all
158 { 158 {
159 return nullptr; 159 return nullptr;
160 } 160 }
161 161
162 PassOwnPtr<StorageNamespace> EmptyStorageClient::createSessionStorageNamespace() 162 PassOwnPtr<StorageNamespace> EmptyStorageClient::createSessionStorageNamespace()
163 { 163 {
164 return nullptr; 164 return nullptr;
165 } 165 }
166 166
167 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698