Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_delegate.h |
| diff --git a/content/browser/frame_host/render_frame_host_delegate.h b/content/browser/frame_host/render_frame_host_delegate.h |
| index ee5aae52bda611ff4eff5537c44a373a427dae52..cc3cd8055f8529341edf2839ff8c97c8cecf20ca 100644 |
| --- a/content/browser/frame_host/render_frame_host_delegate.h |
| +++ b/content/browser/frame_host/render_frame_host_delegate.h |
| @@ -153,7 +153,9 @@ class CONTENT_EXPORT RenderFrameHostDelegate { |
| virtual void EnterFullscreenMode(const GURL& origin) {} |
| // Notification that the frame wants to go out of fullscreen mode. |
| - virtual void ExitFullscreenMode() {} |
| + // |will_cause_resize| can be false in the case where we exit tab fullscreen |
|
Avi (use Gerrit)
2016/01/05 16:17:57
"can be false"? Please write a comment about when
bokan
2016/01/05 17:15:47
Thanks, I've reworded the whole thing to be more c
|
| + // into browser fullscreen and thus won't cause bounds to change. |
| + virtual void ExitFullscreenMode(bool will_cause_resize) {} |
| // Let the delegate decide whether postMessage should be delivered to |
| // |target_rfh| from a source frame in the given SiteInstance. This defaults |