commit | f40ce5b0e297205977af598a5ebc6c5c920c4a4a | [log] [tgz] |
---|---|---|
author | alexmos <[email protected]> | Wed Feb 25 20:19:56 2015 |
committer | Commit bot <[email protected]> | Wed Feb 25 20:21:02 2015 |
tree | bc1db449be489743033b94545123e9f1b950735f | |
parent | 2d8afa3cb4ce5df30b1fb6fdac93444242468ecf [diff] [blame] |
Make load events in iframe elements work with OOPIF (Chromium side). Today, when the parent frame defines a load event handler in the iframe element of an out-of-process child frame, the event does not fire in the parent process. This CL adds the plumbing to forward the event from the child frame's process to the parent frame's process. Blink side: https://codereview.chromium.org/937203003 BUG=453690 Review URL: https://codereview.chromium.org/954793002 Cr-Commit-Position: refs/heads/master@{#318101}
diff --git a/content/renderer/render_frame_proxy.h b/content/renderer/render_frame_proxy.h index 4dcf484..8367c42 100644 --- a/content/renderer/render_frame_proxy.h +++ b/content/renderer/render_frame_proxy.h
@@ -140,6 +140,7 @@ void OnCompositorFrameSwapped(const IPC::Message& message); void OnDisownOpener(); void OnDidStopLoading(); + void OnDispatchLoad(); // The routing ID by which this RenderFrameProxy is known. const int routing_id_;