Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 782 void RemoveObserver(RenderFrameObserver* observer); | 782 void RemoveObserver(RenderFrameObserver* observer); |
| 783 | 783 |
| 784 bool IsLocalRoot() const; | 784 bool IsLocalRoot() const; |
| 785 const RenderFrameImpl* GetLocalRoot() const; | 785 const RenderFrameImpl* GetLocalRoot() const; |
| 786 | 786 |
| 787 // Builds and sends DidCommitProvisionalLoad to the host. | 787 // Builds and sends DidCommitProvisionalLoad to the host. |
| 788 void SendDidCommitProvisionalLoad(blink::WebFrame* frame, | 788 void SendDidCommitProvisionalLoad(blink::WebFrame* frame, |
| 789 blink::WebHistoryCommitType commit_type, | 789 blink::WebHistoryCommitType commit_type, |
| 790 const blink::WebHistoryItem& item); | 790 const blink::WebHistoryItem& item); |
| 791 | 791 |
| 792 // Swaps the current frame into the frame tree, replacing the | |
| 793 // RenderFrameProxy it is associated with. Return value indicates whether | |
| 794 // the swap operation succeeded. This should only be used for provisional | |
| 795 // frames associated with a proxy, while the proxy is still in the frame | |
| 796 // tree. | |
|
Charlie Reis
2017/01/12 00:29:05
Might want to mention what happens if the proxy is
alexmos
2017/01/12 01:38:12
Done.
| |
| 797 bool SwapIn(); | |
| 798 | |
| 792 // IPC message handlers ------------------------------------------------------ | 799 // IPC message handlers ------------------------------------------------------ |
| 793 // | 800 // |
| 794 // The documentation for these functions should be in | 801 // The documentation for these functions should be in |
| 795 // content/common/*_messages.h for the message that the function is handling. | 802 // content/common/*_messages.h for the message that the function is handling. |
| 796 void OnNavigate(const CommonNavigationParams& common_params, | 803 void OnNavigate(const CommonNavigationParams& common_params, |
| 797 const StartNavigationParams& start_params, | 804 const StartNavigationParams& start_params, |
| 798 const RequestNavigationParams& request_params); | 805 const RequestNavigationParams& request_params); |
| 799 void OnBeforeUnload(bool is_reload); | 806 void OnBeforeUnload(bool is_reload); |
| 807 void OnSwapIn(); | |
| 800 void OnSwapOut(int proxy_routing_id, | 808 void OnSwapOut(int proxy_routing_id, |
| 801 bool is_loading, | 809 bool is_loading, |
| 802 const FrameReplicationState& replicated_frame_state); | 810 const FrameReplicationState& replicated_frame_state); |
| 803 void OnDeleteFrame(); | 811 void OnDeleteFrame(); |
| 804 void OnStop(); | 812 void OnStop(); |
| 805 void OnShowContextMenu(const gfx::Point& location); | 813 void OnShowContextMenu(const gfx::Point& location); |
| 806 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 814 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 807 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 815 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 808 unsigned action); | 816 unsigned action); |
| 809 void OnUndo(); | 817 void OnUndo(); |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1364 bool browser_side_navigation_pending_ = false; | 1372 bool browser_side_navigation_pending_ = false; |
| 1365 | 1373 |
| 1366 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1374 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1367 | 1375 |
| 1368 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1376 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1369 }; | 1377 }; |
| 1370 | 1378 |
| 1371 } // namespace content | 1379 } // namespace content |
| 1372 | 1380 |
| 1373 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1381 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |