Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/views/website_settings/non_accessible_image_view.h" | |
| 6 | |
| 7 void NonAccessibleImageView::GetAccessibleNodeData(ui::AXNodeData* node_data) { | |
| 8 node_data->role = ui::AX_ROLE_IGNORED; | |
|
msw
2016/11/11 15:55:01
Please address Dominic's feedback: node_data->AddS
lgarron
2016/11/11 22:28:50
Done.
node_data->AddStateFlag(ui::AX_STATE_INVISI
| |
| 9 } | |
| OLD | NEW |