summaryrefslogtreecommitdiffstats
path: root/lib/render_widget_host_view_qt.cpp
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@digia.com>2013-06-21 11:48:35 +0200
committerMichael BrĂ¼ning <michael.bruning@digia.com>2013-06-21 11:48:35 +0200
commit5999b66ed4c64ee3bed68c7d015c16e67137f5fe (patch)
tree274702280724973038c50480df42ef5dc0fece8a /lib/render_widget_host_view_qt.cpp
parent5ccfd7329b6050447c9ac082812c9711eb695692 (diff)
Fix build due to new pure virtuals in RenderWidgetHostView.
Diffstat (limited to 'lib/render_widget_host_view_qt.cpp')
-rw-r--r--lib/render_widget_host_view_qt.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/render_widget_host_view_qt.cpp b/lib/render_widget_host_view_qt.cpp
index dd3488f10..62a9831dd 100644
--- a/lib/render_widget_host_view_qt.cpp
+++ b/lib/render_widget_host_view_qt.cpp
@@ -424,6 +424,15 @@ void RenderWidgetHostViewQt::OnAccessibilityNotifications(const std::vector<Acce
QT_NOT_YET_IMPLEMENTED
}
+void RenderWidgetHostViewQt::TextInputTypeChanged(ui::TextInputType, bool)
+{
+ QT_NOT_YET_IMPLEMENTED
+}
+
+void RenderWidgetHostViewQt::DidUpdateBackingStore(const gfx::Rect&, const gfx::Vector2d&, const std::vector<gfx::Rect>&, const ui::LatencyInfo&)
+{
+ QT_NOT_YET_IMPLEMENTED
+}
void RenderWidgetHostViewQt::Paint(const gfx::Rect& damage_rect)
{
QRect r(damage_rect.x(), damage_rect.y(), damage_rect.width(), damage_rect.height());