Chromium Code Reviews| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 private: | 139 private: |
| 140 // Overridden from View: | |
|
sky
2014/10/30 13:13:28
I don't think either of these should be private. S
sashab
2014/10/30 23:12:02
Looking at all the direct subclasses, the followin
| |
| 141 void GetAccessibleState(ui::AXViewState* state) override; | |
| 142 void ViewHierarchyChanged( | |
| 143 const ViewHierarchyChangedDetails& details) override; | |
| 144 | |
| 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 |