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

Unified Diff: content/renderer/render_view_impl.cc

Issue 2558933002: Add more fine-grained accessibility modes. (Closed)
Patch Set: Rename constants 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
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index f9bc8b4c3347b0628a32de26c8a7b4eed0a00843..5e86fc34c80e016e0b5281db7f2d4c7998833df1 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -2614,8 +2614,8 @@ bool RenderViewImpl::didTapMultipleTargets(
AccessibilityMode accessibility_mode =
GetMainRenderFrame()->accessibility_mode();
bool matches_accessibility_mode_complete =
- (accessibility_mode & AccessibilityModeComplete) ==
- AccessibilityModeComplete;
+ (accessibility_mode & kAccessibilityModeComplete) ==
+ kAccessibilityModeComplete;
if (matches_accessibility_mode_complete)
return false;

Powered by Google App Engine
This is Rietveld 408576698