OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef UI_VIEWS_WINDOW_DIALOG_DELEGATE_H_ | 5 #ifndef UI_VIEWS_WINDOW_DIALOG_DELEGATE_H_ |
6 #define UI_VIEWS_WINDOW_DIALOG_DELEGATE_H_ | 6 #define UI_VIEWS_WINDOW_DIALOG_DELEGATE_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "ui/accessibility/ax_enums.h" | 10 #include "ui/accessibility/ax_enums.h" |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 public: | 129 public: |
130 DialogDelegateView(); | 130 DialogDelegateView(); |
131 ~DialogDelegateView() override; | 131 ~DialogDelegateView() override; |
132 | 132 |
133 // Overridden from DialogDelegate: | 133 // Overridden from DialogDelegate: |
134 void DeleteDelegate() override; | 134 void DeleteDelegate() override; |
135 Widget* GetWidget() override; | 135 Widget* GetWidget() override; |
136 const Widget* GetWidget() const override; | 136 const Widget* GetWidget() const override; |
137 View* GetContentsView() override; | 137 View* GetContentsView() override; |
138 | 138 |
| 139 // Overridden from View: |
| 140 void GetAccessibleState(ui::AXViewState* state) override; |
| 141 void ViewHierarchyChanged( |
| 142 const ViewHierarchyChangedDetails& details) override; |
| 143 |
139 private: | 144 private: |
140 DISALLOW_COPY_AND_ASSIGN(DialogDelegateView); | 145 DISALLOW_COPY_AND_ASSIGN(DialogDelegateView); |
141 }; | 146 }; |
142 | 147 |
143 } // namespace views | 148 } // namespace views |
144 | 149 |
145 #endif // UI_VIEWS_WINDOW_DIALOG_DELEGATE_H_ | 150 #endif // UI_VIEWS_WINDOW_DIALOG_DELEGATE_H_ |
OLD | NEW |