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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2281103002: Add test for forwarding the load event while pending deletion. (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | content/browser/site_per_process_browsertest.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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 RestoreSubframeFileAccessForHistoryNavigation); 632 RestoreSubframeFileAccessForHistoryNavigation);
633 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, 633 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest,
634 RenderViewInitAfterNewProxyAndProcessKill); 634 RenderViewInitAfterNewProxyAndProcessKill);
635 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, 635 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest,
636 UnloadPushStateOnCrossProcessNavigation); 636 UnloadPushStateOnCrossProcessNavigation);
637 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, 637 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest,
638 WebUIJavascriptDisallowedAfterSwapOut); 638 WebUIJavascriptDisallowedAfterSwapOut);
639 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest, CrashSubframe); 639 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest, CrashSubframe);
640 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest, 640 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest,
641 RenderViewHostIsNotReusedAfterDelayedSwapOutACK); 641 RenderViewHostIsNotReusedAfterDelayedSwapOutACK);
642 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest,
643 LoadEventForwardingWhilePendingDeletion);
642 644
643 // IPC Message handlers. 645 // IPC Message handlers.
644 void OnAddMessageToConsole(int32_t level, 646 void OnAddMessageToConsole(int32_t level,
645 const base::string16& message, 647 const base::string16& message,
646 int32_t line_no, 648 int32_t line_no,
647 const base::string16& source_id); 649 const base::string16& source_id);
648 void OnDetach(); 650 void OnDetach();
649 void OnFrameFocused(); 651 void OnFrameFocused();
650 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); 652 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params);
651 void OnCancelInitialHistoryLoad(); 653 void OnCancelInitialHistoryLoad();
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 1060
1059 // NOTE: This must be the last member. 1061 // NOTE: This must be the last member.
1060 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1062 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1061 1063
1062 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1064 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1063 }; 1065 };
1064 1066
1065 } // namespace content 1067 } // namespace content
1066 1068
1067 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1069 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/site_per_process_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698