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

Unified Diff: Source/web/WebPagePopupImpl.cpp

Issue 321373003: Changing animate to beginFrame and use struct rather than naked double to allow extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/WebPagePopupImpl.cpp
diff --git a/Source/web/WebPagePopupImpl.cpp b/Source/web/WebPagePopupImpl.cpp
index f957933fa3ebf8204879497ef47b9c1423800640..c0547afc6745947003606d3e3200057df131bfe7 100644
--- a/Source/web/WebPagePopupImpl.cpp
+++ b/Source/web/WebPagePopupImpl.cpp
@@ -288,9 +288,9 @@ WebSize WebPagePopupImpl::size()
return m_popupClient->contentSize();
}
-void WebPagePopupImpl::animate(double)
+void WebPagePopupImpl::animate(WebFrameTime frameTime)
{
- PageWidgetDelegate::animate(m_page.get(), monotonicallyIncreasingTime());
+ PageWidgetDelegate::animate(m_page.get(), frameTime);
}
void WebPagePopupImpl::willCloseLayerTreeView()

Powered by Google App Engine
This is Rietveld 408576698