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

Unified Diff: chrome/browser/chromeos/login/wizard_controller_browsertest.cc

Issue 2078393005: mash: Move accessibility_types.h from ui namespace to ash namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a11y
Patch Set: fix chromevox code generated from js Created 4 years, 6 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
Index: chrome/browser/chromeos/login/wizard_controller_browsertest.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
index 3d14b4cad889e2fdf64260ebd7388296a3791c26..6dbec59af7d9eb80fa665c124e00a97c4bfaff3e 100644
--- a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
+++ b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/chromeos/login/wizard_controller.h"
+#include "ash/common/accessibility_types.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/macros.h"
@@ -164,10 +165,10 @@ void SetUpCrasAndEnableChromeVox(int volume_percent, bool mute_on) {
// is disabled.
cras->SetOutputVolumePercent(volume_percent);
cras->SetOutputMute(mute_on);
- a11y->EnableSpokenFeedback(false, ui::A11Y_NOTIFICATION_NONE);
+ a11y->EnableSpokenFeedback(false, ash::A11Y_NOTIFICATION_NONE);
// Spoken feedback is enabled.
- a11y->EnableSpokenFeedback(true, ui::A11Y_NOTIFICATION_NONE);
+ a11y->EnableSpokenFeedback(true, ash::A11Y_NOTIFICATION_NONE);
base::RunLoop().RunUntilIdle();
}

Powered by Google App Engine
This is Rietveld 408576698