| OLD | NEW |
| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 void ForwardPostMessage(blink::WebLocalFrame* sourceFrame, | 134 void ForwardPostMessage(blink::WebLocalFrame* sourceFrame, |
| 135 blink::WebRemoteFrame* targetFrame, | 135 blink::WebRemoteFrame* targetFrame, |
| 136 blink::WebSecurityOrigin target, | 136 blink::WebSecurityOrigin target, |
| 137 blink::WebDOMMessageEvent event) override; | 137 blink::WebDOMMessageEvent event) override; |
| 138 void Navigate(const blink::WebURLRequest& request, | 138 void Navigate(const blink::WebURLRequest& request, |
| 139 bool should_replace_current_entry) override; | 139 bool should_replace_current_entry) override; |
| 140 void FrameRectsChanged(const blink::WebRect& frame_rect) override; | 140 void FrameRectsChanged(const blink::WebRect& frame_rect) override; |
| 141 void UpdateRemoteViewportIntersection( | 141 void UpdateRemoteViewportIntersection( |
| 142 const blink::WebRect& viewportIntersection) override; | 142 const blink::WebRect& viewportIntersection) override; |
| 143 void VisibilityChanged(bool visible) override; | 143 void VisibilityChanged(bool visible) override; |
| 144 void SetIsInert(bool) override; |
| 144 void DidChangeOpener(blink::WebFrame* opener) override; | 145 void DidChangeOpener(blink::WebFrame* opener) override; |
| 145 void AdvanceFocus(blink::WebFocusType type, | 146 void AdvanceFocus(blink::WebFocusType type, |
| 146 blink::WebLocalFrame* source) override; | 147 blink::WebLocalFrame* source) override; |
| 147 void FrameFocused() override; | 148 void FrameFocused() override; |
| 148 | 149 |
| 149 // IPC handlers | 150 // IPC handlers |
| 150 void OnDidStartLoading(); | 151 void OnDidStartLoading(); |
| 151 | 152 |
| 152 private: | 153 private: |
| 153 RenderFrameProxy(int routing_id); | 154 RenderFrameProxy(int routing_id); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 200 |
| 200 RenderViewImpl* render_view_; | 201 RenderViewImpl* render_view_; |
| 201 RenderWidget* render_widget_; | 202 RenderWidget* render_widget_; |
| 202 | 203 |
| 203 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 204 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
| 204 }; | 205 }; |
| 205 | 206 |
| 206 } // namespace | 207 } // namespace |
| 207 | 208 |
| 208 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 209 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
| OLD | NEW |