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

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.h

Issue 1723753002: Make Document::isSecureContext() work for OOPIFs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more rebase fixups Created 4 years, 9 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebRemoteFrameImpl_h 5 #ifndef WebRemoteFrameImpl_h
6 #define WebRemoteFrameImpl_h 6 #define WebRemoteFrameImpl_h
7 7
8 #include "core/frame/FrameOwner.h" 8 #include "core/frame/FrameOwner.h"
9 #include "core/frame/RemoteFrame.h" 9 #include "core/frame/RemoteFrame.h"
10 #include "public/web/WebRemoteFrame.h" 10 #include "public/web/WebRemoteFrame.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // WebRemoteFrame methods: 156 // WebRemoteFrame methods:
157 WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& name, con st WebString& uniqueName, WebSandboxFlags, WebFrameClient*, WebFrame* previousSi bling, const WebFrameOwnerProperties&, WebFrame* opener) override; 157 WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& name, con st WebString& uniqueName, WebSandboxFlags, WebFrameClient*, WebFrame* previousSi bling, const WebFrameOwnerProperties&, WebFrame* opener) override;
158 WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString& name, c onst WebString& uniqueName, WebSandboxFlags, WebRemoteFrameClient*, WebFrame* op ener) override; 158 WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString& name, c onst WebString& uniqueName, WebSandboxFlags, WebRemoteFrameClient*, WebFrame* op ener) override;
159 159
160 void initializeFromFrame(WebLocalFrame*) const override; 160 void initializeFromFrame(WebLocalFrame*) const override;
161 161
162 void setReplicatedOrigin(const WebSecurityOrigin&) const override; 162 void setReplicatedOrigin(const WebSecurityOrigin&) const override;
163 void setReplicatedSandboxFlags(WebSandboxFlags) const override; 163 void setReplicatedSandboxFlags(WebSandboxFlags) const override;
164 void setReplicatedName(const WebString& name, const WebString& uniqueName) c onst override; 164 void setReplicatedName(const WebString& name, const WebString& uniqueName) c onst override;
165 void setReplicatedShouldEnforceStrictMixedContentChecking(bool) const overri de; 165 void setReplicatedShouldEnforceStrictMixedContentChecking(bool) const overri de;
166 void setReplicatedPotentiallyTrustworthyUniqueOrigin(bool) const override;
166 void DispatchLoadEventForFrameOwner() const override; 167 void DispatchLoadEventForFrameOwner() const override;
167 168
168 void didStartLoading() override; 169 void didStartLoading() override;
169 void didStopLoading() override; 170 void didStopLoading() override;
170 171
171 bool isIgnoredForHitTest() const override; 172 bool isIgnoredForHitTest() const override;
172 173
173 #if ENABLE(OILPAN) 174 #if ENABLE(OILPAN)
174 DECLARE_TRACE(); 175 DECLARE_TRACE();
175 #endif 176 #endif
(...skipping 20 matching lines...) Expand all
196 // cleared upon close(). 197 // cleared upon close().
197 SelfKeepAlive<WebRemoteFrameImpl> m_selfKeepAlive; 198 SelfKeepAlive<WebRemoteFrameImpl> m_selfKeepAlive;
198 #endif 199 #endif
199 }; 200 };
200 201
201 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame() , frame.isWebRemoteFrame()); 202 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame() , frame.isWebRemoteFrame());
202 203
203 } // namespace blink 204 } // namespace blink
204 205
205 #endif // WebRemoteFrameImpl_h 206 #endif // WebRemoteFrameImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698