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

Unified Diff: chrome/browser/chromeos/accessibility/accessibility_manager.cc

Issue 2663073004: Temporarily disable two-finger spoken feedback toggle. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/accessibility/accessibility_manager.cc
diff --git a/chrome/browser/chromeos/accessibility/accessibility_manager.cc b/chrome/browser/chromeos/accessibility/accessibility_manager.cc
index 6c43cf7428acb4506ed12489624441be649c6aeb..f6268fe2cb0c0841dea6a1396317db238b227d56 100644
--- a/chrome/browser/chromeos/accessibility/accessibility_manager.cc
+++ b/chrome/browser/chromeos/accessibility/accessibility_manager.cc
@@ -562,6 +562,11 @@ bool AccessibilityManager::PlayEarcon(int sound_key, PlaySoundOption option) {
}
bool AccessibilityManager::ShouldToggleSpokenFeedbackViaTouch() {
+#if 1
+ // Temporarily disabling this feature until UI feedback is fixed.
+ // http://crbug.com/662501
+ return false;
+#else
David Tseng 2017/01/31 20:55:31 Why not just remove this block?
dmazzoni 2017/01/31 21:02:30 The CFM team is going to follow up with a patch to
policy::BrowserPolicyConnectorChromeOS* connector =
g_browser_process->platform_part()->browser_policy_connector_chromeos();
if (!connector)
@@ -582,6 +587,7 @@ bool AccessibilityManager::ShouldToggleSpokenFeedbackViaTouch() {
KioskAppManager::App app;
CHECK(manager->GetApp(manager->GetAutoLaunchApp(), &app));
return app.was_auto_launched_with_zero_delay;
+#endif
}
bool AccessibilityManager::PlaySpokenFeedbackToggleCountdown(int tick_count) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698