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

Unified Diff: content/renderer/render_view_impl.cc

Issue 2558933002: Add more fine-grained accessibility modes. (Closed)
Patch Set: Reformat enums as uppercase Created 4 years 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 | « content/renderer/render_view_browsertest.cc ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index af38e868c82c846dfa1b38f55b042d56b3f82387..231b1e04b0c2b9f573770a657e21d586f3f6baff 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -2624,8 +2624,8 @@ bool RenderViewImpl::didTapMultipleTargets(
AccessibilityMode accessibility_mode =
GetMainRenderFrame()->accessibility_mode();
bool matches_accessibility_mode_complete =
- (accessibility_mode & AccessibilityModeComplete) ==
- AccessibilityModeComplete;
+ (accessibility_mode & ACCESSIBILITY_MODE_COMPLETE) ==
+ ACCESSIBILITY_MODE_COMPLETE;
if (matches_accessibility_mode_complete)
return false;
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698