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

Unified Diff: Source/web/WebViewImpl.h

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/WebViewImpl.h
diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
index 66ec1029bba981baf92ced263105eaa17f6f26db..f214b8706f83f54dc4d6a51b8c97e6f6ef7eaf66 100644
--- a/Source/web/WebViewImpl.h
+++ b/Source/web/WebViewImpl.h
@@ -35,6 +35,7 @@
#include "platform/geometry/IntPoint.h"
#include "platform/geometry/IntRect.h"
#include "platform/graphics/GraphicsLayer.h"
+#include "public/platform/WebFrameTime.h"
#include "public/platform/WebGestureCurveTarget.h"
#include "public/platform/WebLayer.h"
#include "public/platform/WebPoint.h"
@@ -98,7 +99,9 @@ public:
virtual void didEnterFullScreen() OVERRIDE;
virtual void willExitFullScreen() OVERRIDE;
virtual void didExitFullScreen() OVERRIDE;
- virtual void animate(double) OVERRIDE;
+
+ virtual void animate(WebFrameTime) OVERRIDE;
+
virtual void layout() OVERRIDE;
virtual void paint(WebCanvas*, const WebRect&) OVERRIDE;
#if OS(ANDROID)

Powered by Google App Engine
This is Rietveld 408576698