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

Side by Side Diff: ui/accessibility/ax_node_data.cc

Issue 2640503002: Disable next compatibility mode for ChromeVox on dev channel (Closed)
Patch Set: m Created 3 years, 11 months 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 | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "ui/accessibility/ax_node_data.h" 5 #include "ui/accessibility/ax_node_data.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <set> 10 #include <set>
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 switch (string_attributes[i].first) { 617 switch (string_attributes[i].first) {
618 case AX_ATTR_ACCESS_KEY: 618 case AX_ATTR_ACCESS_KEY:
619 result += " access_key=" + value; 619 result += " access_key=" + value;
620 break; 620 break;
621 case AX_ATTR_ARIA_INVALID_VALUE: 621 case AX_ATTR_ARIA_INVALID_VALUE:
622 result += " aria_invalid_value=" + value; 622 result += " aria_invalid_value=" + value;
623 break; 623 break;
624 case AX_ATTR_AUTO_COMPLETE: 624 case AX_ATTR_AUTO_COMPLETE:
625 result += " autocomplete=" + value; 625 result += " autocomplete=" + value;
626 break; 626 break;
627 case AX_ATTR_CHROME_CHANNEL:
628 result += " chrome_channel=" + value;
629 break;
627 case AX_ATTR_DESCRIPTION: 630 case AX_ATTR_DESCRIPTION:
628 result += " description=" + value; 631 result += " description=" + value;
629 break; 632 break;
630 case AX_ATTR_DISPLAY: 633 case AX_ATTR_DISPLAY:
631 result += " display=" + value; 634 result += " display=" + value;
632 break; 635 break;
633 case AX_ATTR_FONT_FAMILY: 636 case AX_ATTR_FONT_FAMILY:
634 result += " font-family=" + value; 637 result += " font-family=" + value;
635 break; 638 break;
636 case AX_ATTR_HTML_TAG: 639 case AX_ATTR_HTML_TAG:
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 } 811 }
809 } 812 }
810 813
811 if (!child_ids.empty()) 814 if (!child_ids.empty())
812 result += " child_ids=" + IntVectorToString(child_ids); 815 result += " child_ids=" + IntVectorToString(child_ids);
813 816
814 return result; 817 return result;
815 } 818 }
816 819
817 } // namespace ui 820 } // namespace ui
OLDNEW
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698