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

Unified Diff: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc

Issue 2721153004: Remove ash_util namespace (Closed)
Patch Set: Created 3 years, 10 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/ui/webui/chromeos/login/core_oobe_handler.cc
diff --git a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc
index 5c4ec9c3b1aac9ee57c4d90c88987223004f519a..35d5b5b3a752b2f81ac9d1faaadc93fa6bc1daa6 100644
--- a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc
+++ b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc
@@ -58,7 +58,7 @@ namespace chromeos {
CoreOobeHandler::CoreOobeHandler(OobeUI* oobe_ui)
: oobe_ui_(oobe_ui), version_info_updater_(this) {
set_call_js_prefix(kJsScreenPath);
- if (!ash_util::IsRunningInMash()) {
+ if (!IsRunningInMash()) {
AccessibilityManager* accessibility_manager = AccessibilityManager::Get();
CHECK(accessibility_manager);
accessibility_subscription_ = accessibility_manager->RegisterCallback(
@@ -314,7 +314,7 @@ void CoreOobeHandler::HandleUpdateCurrentScreen(
if (delegate_)
delegate_->OnCurrentScreenChanged(screen);
// TODO(mash): Support EventRewriterController; see crbug.com/647781
- if (!ash_util::IsRunningInMash()) {
+ if (!IsRunningInMash()) {
KeyboardDrivenEventRewriter::GetInstance()->SetArrowToTabRewritingEnabled(
screen == OobeScreen::SCREEN_OOBE_EULA);
}
@@ -399,7 +399,7 @@ void CoreOobeHandler::UpdateShutdownAndRebootVisibility(
}
void CoreOobeHandler::UpdateA11yState() {
- if (ash_util::IsRunningInMash()) {
+ if (IsRunningInMash()) {
NOTIMPLEMENTED();
return;
}

Powered by Google App Engine
This is Rietveld 408576698