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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Fixed WebViewTest build issues after restructure. Created 3 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 // 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/RemoteFrame.h" 8 #include "core/frame/RemoteFrame.h"
9 #include "platform/heap/SelfKeepAlive.h" 9 #include "platform/heap/SelfKeepAlive.h"
10 #include "platform/wtf/Compiler.h" 10 #include "platform/wtf/Compiler.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 void resetReplicatedContentSecurityPolicy() override; 147 void resetReplicatedContentSecurityPolicy() override;
148 void setReplicatedInsecureRequestPolicy(WebInsecureRequestPolicy) override; 148 void setReplicatedInsecureRequestPolicy(WebInsecureRequestPolicy) override;
149 void setReplicatedPotentiallyTrustworthyUniqueOrigin(bool) override; 149 void setReplicatedPotentiallyTrustworthyUniqueOrigin(bool) override;
150 void dispatchLoadEventOnFrameOwner() override; 150 void dispatchLoadEventOnFrameOwner() override;
151 void didStartLoading() override; 151 void didStartLoading() override;
152 void didStopLoading() override; 152 void didStopLoading() override;
153 bool isIgnoredForHitTest() const override; 153 bool isIgnoredForHitTest() const override;
154 void willEnterFullscreen() override; 154 void willEnterFullscreen() override;
155 void setHasReceivedUserGesture() override; 155 void setHasReceivedUserGesture() override;
156 v8::Local<v8::Object> globalProxy() const override; 156 v8::Local<v8::Object> globalProxy() const override;
157 void advanceFocusInForm(WebFocusType) override;
EhsanK 2017/04/26 21:31:59 I am not sure why we need this. From here: RenderF
AKVT 2017/04/27 15:07:02 Done.
157 158
158 DECLARE_TRACE(); 159 DECLARE_TRACE();
159 160
160 private: 161 private:
161 WebRemoteFrameImpl(WebTreeScopeType, WebRemoteFrameClient*); 162 WebRemoteFrameImpl(WebTreeScopeType, WebRemoteFrameClient*);
162 163
163 // Inherited from WebFrame, but intentionally hidden: it never makes sense 164 // Inherited from WebFrame, but intentionally hidden: it never makes sense
164 // to call these on a WebRemoteFrameImpl. 165 // to call these on a WebRemoteFrameImpl.
165 bool isWebLocalFrame() const override; 166 bool isWebLocalFrame() const override;
166 WebLocalFrame* toWebLocalFrame() override; 167 WebLocalFrame* toWebLocalFrame() override;
(...skipping 12 matching lines...) Expand all
179 180
180 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, 181 DEFINE_TYPE_CASTS(WebRemoteFrameImpl,
181 WebFrame, 182 WebFrame,
182 frame, 183 frame,
183 frame->isWebRemoteFrame(), 184 frame->isWebRemoteFrame(),
184 frame.isWebRemoteFrame()); 185 frame.isWebRemoteFrame());
185 186
186 } // namespace blink 187 } // namespace blink
187 188
188 #endif // WebRemoteFrameImpl_h 189 #endif // WebRemoteFrameImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698