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

Side by Side Diff: content/renderer/render_frame_proxy.h

Issue 2445193005: Route setHasReceivedUserGesture() state for RemoteFrames (Closed)
Patch Set: Created 4 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 CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_PROXY_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_PROXY_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 void frameDetached(DetachType type) override; 129 void frameDetached(DetachType type) override;
130 void forwardPostMessage(blink::WebLocalFrame* sourceFrame, 130 void forwardPostMessage(blink::WebLocalFrame* sourceFrame,
131 blink::WebRemoteFrame* targetFrame, 131 blink::WebRemoteFrame* targetFrame,
132 blink::WebSecurityOrigin target, 132 blink::WebSecurityOrigin target,
133 blink::WebDOMMessageEvent event) override; 133 blink::WebDOMMessageEvent event) override;
134 void navigate(const blink::WebURLRequest& request, 134 void navigate(const blink::WebURLRequest& request,
135 bool should_replace_current_entry) override; 135 bool should_replace_current_entry) override;
136 void forwardInputEvent(const blink::WebInputEvent* event) override; 136 void forwardInputEvent(const blink::WebInputEvent* event) override;
137 void frameRectsChanged(const blink::WebRect& frame_rect) override; 137 void frameRectsChanged(const blink::WebRect& frame_rect) override;
138 void visibilityChanged(bool visible) override; 138 void visibilityChanged(bool visible) override;
139 void setHasReceivedUserGesture() override;
139 void didChangeOpener(blink::WebFrame* opener) override; 140 void didChangeOpener(blink::WebFrame* opener) override;
140 void advanceFocus(blink::WebFocusType type, 141 void advanceFocus(blink::WebFocusType type,
141 blink::WebLocalFrame* source) override; 142 blink::WebLocalFrame* source) override;
142 void frameFocused() override; 143 void frameFocused() override;
143 144
144 // IPC handlers 145 // IPC handlers
145 void OnDidStartLoading(); 146 void OnDidStartLoading();
146 147
147 private: 148 private:
148 RenderFrameProxy(int routing_id, int frame_routing_id); 149 RenderFrameProxy(int routing_id, int frame_routing_id);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 191
191 RenderViewImpl* render_view_; 192 RenderViewImpl* render_view_;
192 RenderWidget* render_widget_; 193 RenderWidget* render_widget_;
193 194
194 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); 195 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy);
195 }; 196 };
196 197
197 } // namespace 198 } // namespace
198 199
199 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ 200 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698