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

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

Issue 2632633006: Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. (Closed)
Patch Set: Fix navigation transition type. Created 3 years, 6 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
« no previous file with comments | « content/public/test/navigation_simulator.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 void OnNavigate(const CommonNavigationParams& common_params, 847 void OnNavigate(const CommonNavigationParams& common_params,
848 const StartNavigationParams& start_params, 848 const StartNavigationParams& start_params,
849 const RequestNavigationParams& request_params); 849 const RequestNavigationParams& request_params);
850 void OnBeforeUnload(bool is_reload); 850 void OnBeforeUnload(bool is_reload);
851 void OnSwapIn(); 851 void OnSwapIn();
852 void OnSwapOut(int proxy_routing_id, 852 void OnSwapOut(int proxy_routing_id,
853 bool is_loading, 853 bool is_loading,
854 const FrameReplicationState& replicated_frame_state); 854 const FrameReplicationState& replicated_frame_state);
855 void OnDeleteFrame(); 855 void OnDeleteFrame();
856 void OnStop(); 856 void OnStop();
857 void OnCollapse(bool collapse);
857 void OnShowContextMenu(const gfx::Point& location); 858 void OnShowContextMenu(const gfx::Point& location);
858 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); 859 void OnContextMenuClosed(const CustomContextMenuContext& custom_context);
859 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, 860 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context,
860 unsigned action); 861 unsigned action);
861 void OnUndo(); 862 void OnUndo();
862 void OnRedo(); 863 void OnRedo();
863 void OnCut(); 864 void OnCut();
864 void OnCopy(); 865 void OnCopy();
865 void OnPaste(); 866 void OnPaste();
866 void OnPasteAndMatchStyle(); 867 void OnPasteAndMatchStyle();
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
1475 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; 1476 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_;
1476 1477
1477 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1478 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1478 1479
1479 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1480 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1480 }; 1481 };
1481 1482
1482 } // namespace content 1483 } // namespace content
1483 1484
1484 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1485 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/test/navigation_simulator.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698