Index: chrome/browser/renderer_host/render_widget_host_view_gtk.cc |
=================================================================== |
--- chrome/browser/renderer_host/render_widget_host_view_gtk.cc (revision 70685) |
+++ chrome/browser/renderer_host/render_widget_host_view_gtk.cc (working copy) |
@@ -1106,15 +1106,17 @@ |
host_->ForwardKeyboardEvent(event); |
} |
-void RenderWidgetHostViewGtk::AnimationEnded(const Animation* animation) { |
+void RenderWidgetHostViewGtk::AnimationEnded(const ui::Animation* animation) { |
gtk_widget_queue_draw(view_.get()); |
} |
-void RenderWidgetHostViewGtk::AnimationProgressed(const Animation* animation) { |
+void RenderWidgetHostViewGtk::AnimationProgressed( |
+ const ui::Animation* animation) { |
gtk_widget_queue_draw(view_.get()); |
} |
-void RenderWidgetHostViewGtk::AnimationCanceled(const Animation* animation) { |
+void RenderWidgetHostViewGtk::AnimationCanceled( |
+ const ui::Animation* animation) { |
gtk_widget_queue_draw(view_.get()); |
} |