Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(696)

Side by Side Diff: ui/views/window/dialog_delegate.h

Issue 691703002: Modified DialogDelegateView to be accessible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/views/window/dialog_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | ui/views/window/dialog_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698