summaryrefslogtreecommitdiffstats
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
parent5ccfd7329b6050447c9ac082812c9711eb695692 (diff)
Fix build due to new pure virtuals in RenderWidgetHostView.
-rw-r--r--lib/render_widget_host_view_qt.cpp9
-rw-r--r--lib/render_widget_host_view_qt.h2
2 files changed, 11 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());
diff --git a/lib/render_widget_host_view_qt.h b/lib/render_widget_host_view_qt.h
index 5a9d2c9e8..565cdae37 100644
--- a/lib/render_widget_host_view_qt.h
+++ b/lib/render_widget_host_view_qt.h
@@ -126,6 +126,8 @@ public:
virtual void SetHasHorizontalScrollbar(bool);
virtual void SetScrollOffsetPinning(bool, bool);
virtual void OnAccessibilityNotifications(const std::vector<AccessibilityHostMsg_NotificationParams>&);
+ virtual void TextInputTypeChanged(ui::TextInputType, bool);
+ virtual void DidUpdateBackingStore(const gfx::Rect&, const gfx::Vector2d&, const std::vector<gfx::Rect>&, const ui::LatencyInfo&);
void handleMouseEvent(QMouseEvent*);
void handleKeyEvent(QKeyEvent*);