OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "views/window/dialog_delegate.h" | 5 #include "ui/views/window/dialog_delegate.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "views/controls/button/text_button.h" | 8 #include "views/controls/button/text_button.h" |
9 #include "views/widget/widget.h" | 9 #include "views/widget/widget.h" |
10 | 10 |
11 namespace views { | 11 namespace views { |
12 | 12 |
13 //////////////////////////////////////////////////////////////////////////////// | 13 //////////////////////////////////////////////////////////////////////////////// |
14 // DialogDelegate: | 14 // DialogDelegate: |
15 | 15 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 112 |
113 Widget* DialogDelegateView::GetWidget() { | 113 Widget* DialogDelegateView::GetWidget() { |
114 return View::GetWidget(); | 114 return View::GetWidget(); |
115 } | 115 } |
116 | 116 |
117 const Widget* DialogDelegateView::GetWidget() const { | 117 const Widget* DialogDelegateView::GetWidget() const { |
118 return View::GetWidget(); | 118 return View::GetWidget(); |
119 } | 119 } |
120 | 120 |
121 } // namespace views | 121 } // namespace views |
OLD | NEW |