Index: views/window/client_view.cc |
diff --git a/views/window/client_view.cc b/views/window/client_view.cc |
index de198edec106000ef6b8b144551f0e25ba952ff1..9fb3e703cc918ee858076820f0e5068e0d00d02b 100644 |
--- a/views/window/client_view.cc |
+++ b/views/window/client_view.cc |
@@ -24,6 +24,14 @@ int ClientView::NonClientHitTest(const gfx::Point& point) { |
return bounds().Contains(point) ? HTCLIENT : HTNOWHERE; |
} |
+DialogClientView* ClientView::AsDialogClientView() { |
+ return NULL; |
+} |
+ |
+bool ClientView::CanClose() { |
+ return true; |
+} |
+ |
void ClientView::WindowClosing() { |
window_->GetDelegate()->WindowClosing(); |
} |