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

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

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 // 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 "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "public/web/WebRemoteFrame.h" 10 #include "public/web/WebRemoteFrame.h"
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 166
167 bool selectionStartHasSpellingMarkerFor(int from, int length) const override ; 167 bool selectionStartHasSpellingMarkerFor(int from, int length) const override ;
168 WebString layerTreeAsText(bool showDebugInfo = false) const override; 168 WebString layerTreeAsText(bool showDebugInfo = false) const override;
169 169
170 WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& name, Web SandboxFlags, WebFrameClient*, WebFrame* previousSibling, const WebFrameOwnerPro perties&) override; 170 WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& name, Web SandboxFlags, WebFrameClient*, WebFrame* previousSibling, const WebFrameOwnerPro perties&) override;
171 WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString& name, W ebSandboxFlags, WebRemoteFrameClient*) override; 171 WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString& name, W ebSandboxFlags, WebRemoteFrameClient*) override;
172 172
173 void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name); 173 void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name);
174 174
175 void setCoreFrame(PassRefPtrWillBeRawPtr<RemoteFrame>); 175 void setCoreFrame(PassRefPtrWillBeRawPtr<RemoteFrame>);
176 RemoteFrame* frame() const { return m_frame.get(); } 176 RemoteFrame* frame() const;
177 177
178 WebRemoteFrameClient* client() const { return m_client; } 178 WebRemoteFrameClient* client() const { return m_client; }
179 179
180 static WebRemoteFrameImpl* fromFrame(RemoteFrame&); 180 static WebRemoteFrameImpl* fromFrame(RemoteFrame&);
181 181
182 void initializeFromFrame(WebLocalFrame*) const override; 182 void initializeFromFrame(WebLocalFrame*) const override;
183 183
184 void setReplicatedOrigin(const WebSecurityOrigin&) const override; 184 void setReplicatedOrigin(const WebSecurityOrigin&) const override;
185 void setReplicatedSandboxFlags(WebSandboxFlags) const override; 185 void setReplicatedSandboxFlags(WebSandboxFlags) const override;
186 void setReplicatedName(const WebString&) const override; 186 void setReplicatedName(const WebString&) const override;
(...skipping 21 matching lines...) Expand all
208 // cleared upon close(). 208 // cleared upon close().
209 SelfKeepAlive<WebRemoteFrameImpl> m_selfKeepAlive; 209 SelfKeepAlive<WebRemoteFrameImpl> m_selfKeepAlive;
210 #endif 210 #endif
211 }; 211 };
212 212
213 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame() , frame.isWebRemoteFrame()); 213 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame() , frame.isWebRemoteFrame());
214 214
215 } // namespace blink 215 } // namespace blink
216 216
217 #endif // WebRemoteFrameImpl_h 217 #endif // WebRemoteFrameImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698