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

Side by Side Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp

Issue 1991273003: Fire visibilityChange event on out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 m_layerTreeView->attachCompositorAnimationTimeline(compositorTimeline->a nimationTimeline()); 1103 m_layerTreeView->attachCompositorAnimationTimeline(compositorTimeline->a nimationTimeline());
1104 1104
1105 } 1105 }
1106 1106
1107 void WebFrameWidgetImpl::detachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline) 1107 void WebFrameWidgetImpl::detachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline)
1108 { 1108 {
1109 if (m_layerTreeView) 1109 if (m_layerTreeView)
1110 m_layerTreeView->detachCompositorAnimationTimeline(compositorTimeline->a nimationTimeline()); 1110 m_layerTreeView->detachCompositorAnimationTimeline(compositorTimeline->a nimationTimeline());
1111 } 1111 }
1112 1112
1113 void WebFrameWidgetImpl::setVisibilityState(WebPageVisibilityState visibilitySta te, bool isInitialState) 1113 void WebFrameWidgetImpl::setVisibilityState(WebPageVisibilityState visibilitySta te)
1114 { 1114 {
1115 if (!page()) 1115 if (m_layerTreeView)
1116 return; 1116 m_layerTreeView->setVisible(visibilityState == WebPageVisibilityStateVis ible);
1117
1118 // FIXME: This is not correct, since Show and Hide messages for a frame's Wi dget do not necessarily
1119 // correspond to Page visibility, but is necessary until we properly sort ou t OOPIF visibility.
1120 page()->setVisibilityState(static_cast<PageVisibilityState>(visibilityState) , isInitialState);
1121
1122 m_localRoot->frame()->frameScheduler()->setPageVisible(visibilityState == We bPageVisibilityStateVisible);
1123
1124 if (m_layerTreeView) {
1125 bool visible = visibilityState == WebPageVisibilityStateVisible;
1126 m_layerTreeView->setVisible(visible);
1127 }
1128 } 1117 }
1129 1118
1130 HitTestResult WebFrameWidgetImpl::hitTestResultForRootFramePos(const IntPoint& p osInRootFrame) 1119 HitTestResult WebFrameWidgetImpl::hitTestResultForRootFramePos(const IntPoint& p osInRootFrame)
1131 { 1120 {
1132 IntPoint docPoint(m_localRoot->frame()->view()->rootFrameToContents(posInRoo tFrame)); 1121 IntPoint docPoint(m_localRoot->frame()->view()->rootFrameToContents(posInRoo tFrame));
1133 HitTestResult result = m_localRoot->frame()->eventHandler().hitTestResultAtP oint(docPoint, HitTestRequest::ReadOnly | HitTestRequest::Active); 1122 HitTestResult result = m_localRoot->frame()->eventHandler().hitTestResultAtP oint(docPoint, HitTestRequest::ReadOnly | HitTestRequest::Active);
1134 result.setToShadowHostIfInUserAgentShadowRoot(); 1123 result.setToShadowHostIfInUserAgentShadowRoot();
1135 return result; 1124 return result;
1136 } 1125 }
1137 1126
1138 } // namespace blink 1127 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.h ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698