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

Issue 2863703003: A11y: Rename AXSupportedAction to AXDefaultActionVerb. (Closed)

Created:
3 years, 7 months ago by Patti Lor
Modified:
3 years, 7 months ago
Reviewers:
dmazzoni, Mike West, sky
CC:
aboxhall+watch_chromium.org, chrome-apps-syd-reviews_chromium.org, chromium-reviews, dmazzoni+watch_chromium.org, dougt+watch_chromium.org, dtseng+watch_chromium.org, je_julie, nektar+watch_chromium.org, yuzo+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

A11y: Rename AXSupportedAction to AXDefaultActionVerb. The AXSupportedAction enum is used to identify the appropriate string to use when a11y clients need to know the action that will occur on an a11y element when performing the default action, which is a click. Avoid any confusion with the AXActions an a11y element supports by renaming it. BUG=717846 Review-Url: https://codereview.chromium.org/2863703003 Cr-Commit-Position: refs/heads/master@{#472715} Committed: https://chromium.googlesource.com/chromium/src/+/fee367ad5f048733aba40a3a7b64ddb7967355dc

Patch Set 1 #

Patch Set 2 : Rename AX_ATTR_ACTION as well, fix up. #

Patch Set 3 : Fix test. #

Patch Set 4 : Rebase. #

Patch Set 5 : Rebase. #

Total comments: 4

Patch Set 6 : Review comments. #

Patch Set 7 : Rebase. #

Patch Set 8 : Fix Windows compile from rebase. #

Patch Set 9 : Rebase again. #

Patch Set 10 : Rebase #

Patch Set 11 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+139 lines, -131 lines) Patch
M chrome/browser/ui/views/toolbar/toolbar_button.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/accessibility/browser_accessibility_android.cc View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/accessibility/browser_accessibility_auralinux.cc View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M content/browser/accessibility/browser_accessibility_com_win.cc View 1 2 3 4 5 6 7 8 9 5 chunks +13 lines, -10 lines 0 comments Download
M content/renderer/accessibility/blink_ax_enum_conversion.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/renderer/accessibility/blink_ax_enum_conversion.cc View 1 2 3 4 1 chunk +22 lines, -22 lines 0 comments Download
M content/renderer/accessibility/blink_ax_tree_source.cc View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M content/test/data/accessibility/html/action-verbs.html View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/test/data/accessibility/html/action-verbs-expected-blink.txt View 1 2 1 chunk +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/accessibility/AXObjectImpl.cpp View 1 2 3 4 5 6 7 8 10 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/web/AssertMatchingEnums.cpp View 1 2 3 4 5 6 7 8 10 1 chunk +12 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/web/WebAXObject.cpp View 1 2 3 4 5 6 7 8 10 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/public/web/WebAXEnums.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/public/web/WebAXObject.h View 1 2 3 4 5 6 7 8 10 1 chunk +1 line, -1 line 0 comments Download
M ui/accessibility/ax_enums.idl View 1 2 3 4 5 6 7 8 3 chunks +7 lines, -5 lines 0 comments Download
M ui/accessibility/ax_node_data.cc View 1 2 3 4 5 2 chunks +4 lines, -4 lines 0 comments Download
M ui/accessibility/ax_text_utils.h View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M ui/accessibility/ax_text_utils.cc View 1 2 3 4 5 2 chunks +24 lines, -23 lines 0 comments Download
M ui/accessibility/platform/ax_platform_node_win.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M ui/views/controls/button/checkbox.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M ui/views/controls/button/custom_button.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M ui/views/controls/button/menu_button.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M ui/views/controls/combobox/combobox.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M ui/views/controls/textfield/textfield.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 70 (55 generated)
Patti Lor
Hi dmazzoni, PTAL? Thanks.
3 years, 7 months ago (2017-05-12 00:47:03 UTC) #20
dmazzoni
lgtm https://codereview.chromium.org/2863703003/diff/80001/content/browser/accessibility/browser_accessibility_auralinux.cc File content/browser/accessibility/browser_accessibility_auralinux.cc (right): https://codereview.chromium.org/2863703003/diff/80001/content/browser/accessibility/browser_accessibility_auralinux.cc#newcode101 content/browser/accessibility/browser_accessibility_auralinux.cc:101: base::string16 action_verb = ui::ActionToUnlocalizedString( Maybe this should be ...
3 years, 7 months ago (2017-05-12 03:08:58 UTC) #21
Patti Lor
Hi sky, PTAL for: ui/* and chrome/browser/* mkwst, PTAL for: third_party/WebKit/* Thanks all! https://codereview.chromium.org/2863703003/diff/80001/content/browser/accessibility/browser_accessibility_auralinux.cc File ...
3 years, 7 months ago (2017-05-15 06:03:42 UTC) #35
Mike West
third_party/WebKit LGTM.
3 years, 7 months ago (2017-05-15 07:36:42 UTC) #36
sky
LGTM
3 years, 7 months ago (2017-05-15 15:42:40 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2863703003/140001
3 years, 7 months ago (2017-05-16 00:41:36 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/437687)
3 years, 7 months ago (2017-05-16 01:21:02 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2863703003/160001
3 years, 7 months ago (2017-05-16 03:03:32 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/455369)
3 years, 7 months ago (2017-05-16 05:16:32 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2863703003/160001
3 years, 7 months ago (2017-05-17 03:55:38 UTC) #49
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_dbg_recipe on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/269822) android_clang_dbg_recipe on master.tryserver.chromium.android (JOB_FAILED, ...
3 years, 7 months ago (2017-05-17 04:01:45 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2863703003/180001
3 years, 7 months ago (2017-05-17 07:57:26 UTC) #58
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/446892)
3 years, 7 months ago (2017-05-17 08:04:13 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2863703003/200001
3 years, 7 months ago (2017-05-18 06:45:38 UTC) #67
commit-bot: I haz the power
3 years, 7 months ago (2017-05-18 06:52:21 UTC) #70
Message was sent while issue was closed.
Committed patchset #11 (id:200001) as
https://chromium.googlesource.com/chromium/src/+/fee367ad5f048733aba40a3a7b64...

Powered by Google App Engine
This is Rietveld 408576698