Index: chrome/browser/ui/webui/chromeos/login/enable_debugging_screen_handler.cc |
diff --git a/chrome/browser/ui/webui/chromeos/login/enable_debugging_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/enable_debugging_screen_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..05b15085f4c699b4d61c32ad7685b848a5f51263 |
--- /dev/null |
+++ b/chrome/browser/ui/webui/chromeos/login/enable_debugging_screen_handler.cc |
@@ -0,0 +1,245 @@ |
+// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/ui/webui/chromeos/login/enable_debugging_screen_handler.h" |
+ |
+#include <string> |
+ |
+#include "base/command_line.h" |
+#include "base/prefs/pref_registry_simple.h" |
+#include "base/prefs/pref_service.h" |
+#include "base/values.h" |
+#include "chrome/browser/browser_process.h" |
+#include "chrome/browser/chromeos/login/help_app_launcher.h" |
+#include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
+#include "chrome/common/pref_names.h" |
+#include "chrome/grit/chromium_strings.h" |
+#include "chrome/grit/generated_resources.h" |
+#include "chromeos/chromeos_switches.h" |
+#include "chromeos/dbus/dbus_thread_manager.h" |
+#include "chromeos/dbus/debug_daemon_client.h" |
+#include "chromeos/dbus/power_manager_client.h" |
+ |
+namespace { |
+ |
+const char kJsScreenPath[] = "login.EnableDebuggingScreen"; |
+ |
+const char kEnableDebuggingScreen[] = "debugging"; |
+ |
+} // namespace |
+ |
+namespace chromeos { |
+ |
+EnableDebuggingScreenHandler::EnableDebuggingScreenHandler() |
+ : BaseScreenHandler(kJsScreenPath), |
+ delegate_(NULL), |
+ show_on_init_(false), |
+ weak_ptr_factory_(this) { |
+} |
+ |
+EnableDebuggingScreenHandler::~EnableDebuggingScreenHandler() { |
+ if (delegate_) |
+ delegate_->OnActorDestroyed(this); |
+} |
+ |
+void EnableDebuggingScreenHandler::PrepareToShow() { |
+} |
+ |
+void EnableDebuggingScreenHandler::ShowWithParams() { |
+ base::DictionaryValue debugging_screen_params; |
+#if defined(OFFICIAL_BUILD) |
+ debugging_screen_params.SetBoolean("isOfficialBuild", true); |
+#endif |
+ ShowScreen(kEnableDebuggingScreen, &debugging_screen_params); |
+ |
+ // Check the status of debugging features. |
+ chromeos::DebugDaemonClient* client = |
+ chromeos::DBusThreadManager::Get()->GetDebugDaemonClient(); |
+ client->QueryDebuggingFeatures( |
+ base::Bind(&EnableDebuggingScreenHandler::OnQueryDebuggingFeatures, |
+ weak_ptr_factory_.GetWeakPtr())); |
+} |
+ |
+void EnableDebuggingScreenHandler::Show() { |
+ if (!page_is_ready()) { |
+ show_on_init_ = true; |
+ return; |
+ } |
+ |
+ ShowWithParams(); |
+} |
+ |
+void EnableDebuggingScreenHandler::Hide() { |
+ weak_ptr_factory_.InvalidateWeakPtrs(); |
+} |
+ |
+void EnableDebuggingScreenHandler::SetDelegate(Delegate* delegate) { |
+ delegate_ = delegate; |
+ if (page_is_ready()) |
+ Initialize(); |
+} |
+ |
+void EnableDebuggingScreenHandler::DeclareLocalizedValues( |
+ LocalizedValuesBuilder* builder) { |
+ builder->Add("enableDebuggingScreenTitle", |
+ IDS_ENABLE_DEBUGGING_SCREEN_TITLE); |
+ builder->Add("enableDebuggingScreenAccessibleTitle", |
+ IDS_ENABLE_DEBUGGING_SCREEN_TITLE); |
+ builder->Add("enableDebuggingScreenIconTitle", IDS_EXCLAMATION_ICON_TITLE); |
+ builder->Add("enableDebuggingCancelButton", IDS_CANCEL); |
+ builder->Add("enableDebuggingOKButton", IDS_OK); |
+ builder->Add("enableDebuggingRemoveButton", |
+ IDS_ENABLE_DEBUGGING_REMOVE_ROOTFS_BUTTON); |
+ builder->Add("enableDebuggingEnableButton", |
+ IDS_ENABLE_DEBUGGING_ENABLE_BUTTON); |
+ builder->Add("enableDebuggingRemveRootfsMessage", |
+ IDS_ENABLE_DEBUGGING_SCREEN_ROOTFS_REMOVE_MSG); |
+ builder->Add("enableDebuggingSetupMessage", |
+ IDS_ENABLE_DEBUGGING_SETUP_MESSAGE); |
+ builder->Add("enableDebuggingWaitMessage", |
+ IDS_ENABLE_DEBUGGING_WAIT_MESSAGE); |
+ builder->AddF("enableDebuggingWarningTitle", |
+ IDS_ENABLE_DEBUGGING_SCREEN_WARNING_MSG, |
+ IDS_SHORT_PRODUCT_NAME); |
+ builder->AddF("enableDebuggingDoneMessage", |
+ IDS_ENABLE_DEBUGGING_DONE_MESSAGE, |
+ IDS_SHORT_PRODUCT_NAME); |
+ builder->AddF("enableDebuggingErrorMessage", |
+ IDS_ENABLE_DEBUGGING_ERROR_MESSAGE, |
+ IDS_SHORT_PRODUCT_NAME); |
+ builder->Add("enableDebuggingPasswordLabel", |
+ IDS_ENABLE_DEBUGGING_ROOT_PASSWORD_LABEL); |
+ builder->Add("enableDebuggingConfirmPasswordLabel", |
+ IDS_ENABLE_DEBUGGING_CONFIRM_PASSWORD_LABEL); |
+ builder->Add("enableDebuggingPasswordLengthNote", |
+ IDS_ENABLE_DEBUGGING_EMPTY_ROOT_PASSWORD_LABEL); |
+} |
+ |
+// static |
+void EnableDebuggingScreenHandler::RegisterPrefs(PrefRegistrySimple* registry) { |
+ registry->RegisterBooleanPref(prefs::kDebuggingFeaturesRequested, false); |
+} |
+ |
+void EnableDebuggingScreenHandler::Initialize() { |
+ if (!page_is_ready() || !delegate_) |
+ return; |
+ |
+ if (show_on_init_) { |
+ Show(); |
+ show_on_init_ = false; |
+ } |
+} |
+ |
+void EnableDebuggingScreenHandler::RegisterMessages() { |
+ AddCallback("enableDebuggingOnCancel", |
+ &EnableDebuggingScreenHandler::HandleOnCancel); |
+ AddCallback("enableDebuggingOnDone", |
+ &EnableDebuggingScreenHandler::HandleOnDone); |
+ AddCallback("enableDebuggingOnLearnMore", |
+ &EnableDebuggingScreenHandler::HandleOnLearnMore); |
+ AddCallback("enableDebuggingOnRemoveRootFSProtection", |
+ &EnableDebuggingScreenHandler::HandleOnRemoveRootFSProtection); |
+ AddCallback("enableDebuggingOnSetup", |
+ &EnableDebuggingScreenHandler::HandleOnSetup); |
+} |
+ |
+void EnableDebuggingScreenHandler::HandleOnCancel() { |
+ if (delegate_) |
+ delegate_->OnExit(false); |
+} |
+ |
+void EnableDebuggingScreenHandler::HandleOnDone() { |
+ if (delegate_) |
+ delegate_->OnExit(true); |
+} |
+ |
+void EnableDebuggingScreenHandler::HandleOnRemoveRootFSProtection() { |
+ UpdateUIState(UI_STATE_WAIT); |
+ chromeos::DebugDaemonClient* client = |
+ chromeos::DBusThreadManager::Get()->GetDebugDaemonClient(); |
+ client->RemoveRootfsVerification( |
+ base::Bind(&EnableDebuggingScreenHandler::OnRemoveRootfsVerification, |
+ weak_ptr_factory_.GetWeakPtr())); |
+} |
+ |
+void EnableDebuggingScreenHandler::HandleOnSetup( |
+ const std::string& password) { |
+ UpdateUIState(UI_STATE_WAIT); |
+ chromeos::DebugDaemonClient* client = |
+ chromeos::DBusThreadManager::Get()->GetDebugDaemonClient(); |
+ client->EnableDebuggingFeatures( |
+ password, |
+ base::Bind(&EnableDebuggingScreenHandler::OnEnableDebuggingFeatures, |
+ weak_ptr_factory_.GetWeakPtr())); |
+} |
+ |
+// Removes rootfs verification, add flag to start with enable debugging features |
+// screen and reboots the machine. |
+void EnableDebuggingScreenHandler::OnRemoveRootfsVerification(bool success) { |
+ if (!success) { |
+ UpdateUIState(UI_STATE_ERROR); |
+ return; |
+ } |
+ |
+ PrefService* prefs = g_browser_process->local_state(); |
+ prefs->SetBoolean(prefs::kDebuggingFeaturesRequested, true); |
+ prefs->CommitPendingWrite(); |
+ chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->RequestRestart(); |
+} |
+ |
+ |
+void EnableDebuggingScreenHandler::OnEnableDebuggingFeatures(bool success) { |
+ if (!success) { |
+ UpdateUIState(UI_STATE_ERROR); |
+ return; |
+ } |
+ |
+ UpdateUIState(UI_STATE_DONE); |
+} |
+ |
+ |
+void EnableDebuggingScreenHandler::OnQueryDebuggingFeatures(bool success, |
+ int features_flag) { |
+ if (!success || features_flag == DebugDaemonClient::DEV_FEATURES_DISABLED) { |
+ UpdateUIState(UI_STATE_ERROR); |
+ return; |
+ } |
+ |
+ if (features_flag == DebugDaemonClient::DEV_FEATURE_NONE) { |
+ UpdateUIState(UI_STATE_REMOVE_PROTECTION); |
+ return; |
+ } |
+ |
+ if (features_flag & DebugDaemonClient::DEV_FEATURE_ALL_ENABLED) { |
+ UpdateUIState(UI_STATE_DONE); |
+ } else if (features_flag & |
+ DebugDaemonClient::DEV_FEATURE_ROOTFS_VERIFICATION_REMOVED) { |
+ UpdateUIState(UI_STATE_SETUP); |
+ } else { |
+ LOG(WARNING) << "Unexpected status of debugging features:" << features_flag; |
+ UpdateUIState(UI_STATE_ERROR); |
+ } |
+} |
+ |
+void EnableDebuggingScreenHandler::UpdateUIState( |
+ EnableDebuggingScreenHandler::UIState state) { |
+ if (state == UI_STATE_ERROR || state == UI_STATE_DONE) { |
+ PrefService* prefs = g_browser_process->local_state(); |
+ prefs->ClearPref(prefs::kDebuggingFeaturesRequested); |
+ prefs->CommitPendingWrite(); |
+ } |
+ |
+ web_ui()->CallJavascriptFunction( |
+ "login.EnableDebuggingScreen.updateState", |
+ base::FundamentalValue(static_cast<int>(state))); |
+} |
+ |
+void EnableDebuggingScreenHandler::HandleOnLearnMore() { |
+ VLOG(1) << "Trying to view the help article about debugging features."; |
+ if (!help_app_.get()) |
+ help_app_ = new HelpAppLauncher(GetNativeWindow()); |
+ help_app_->ShowHelpTopic(HelpAppLauncher::HELP_ENABLE_DEBUGGING); |
Nikita (slow)
2014/11/05 17:33:15
I suggest commenting out this line till real help
|
+} |
+ |
+} // namespace chromeos |