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

Unified Diff: ui/message_center/views/bounded_label.cc

Issue 2477463003: Replace ui::AXViewState with AXNodeData and AXActionData (Closed)
Patch Set: Fix test Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/message_center/views/bounded_label.h ('k') | ui/message_center/views/message_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/message_center/views/bounded_label.cc
diff --git a/ui/message_center/views/bounded_label.cc b/ui/message_center/views/bounded_label.cc
index dbd403e0154e13e299cc2793a1302912fc39bdb5..3a45f3dd7bf1664c5068be1d118220a61d033c4b 100644
--- a/ui/message_center/views/bounded_label.cc
+++ b/ui/message_center/views/bounded_label.cc
@@ -333,8 +333,8 @@ bool BoundedLabel::CanProcessEventsWithinSubtree() const {
return label_->CanProcessEventsWithinSubtree();
}
-void BoundedLabel::GetAccessibleState(ui::AXViewState* state) {
- label_->GetAccessibleState(state);
+void BoundedLabel::GetAccessibleNodeData(ui::AXNodeData* node_data) {
+ label_->GetAccessibleNodeData(node_data);
}
void BoundedLabel::OnBoundsChanged(const gfx::Rect& previous_bounds) {
« no previous file with comments | « ui/message_center/views/bounded_label.h ('k') | ui/message_center/views/message_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698