diff options
Diffstat (limited to 'views/widget/widget_delegate.h')
-rw-r--r-- | views/widget/widget_delegate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/widget/widget_delegate.h b/views/widget/widget_delegate.h index 8c9e069..6a6b254 100644 --- a/views/widget/widget_delegate.h +++ b/views/widget/widget_delegate.h @@ -135,8 +135,8 @@ class WidgetDelegate { virtual void OnWindowEndUserBoundsChange() {} // Returns the Widget associated with this delegate. - virtual Widget* GetWidget(); - virtual const Widget* GetWidget() const; + virtual Widget* GetWidget() = 0; + virtual const Widget* GetWidget() const = 0; // Returns the View that is contained within this Widget. virtual View* GetContentsView(); |