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

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

Issue 12213110: Implemented screen notifying users about malformed HWID. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Implemented wizard controller test. Created 7 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/wrong_hwid_screen_handler.cc
diff --git a/chrome/browser/ui/webui/chromeos/login/wrong_hwid_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/wrong_hwid_screen_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..516df933b0115cb8c1acee0bc083bde9ef971202
--- /dev/null
+++ b/chrome/browser/ui/webui/chromeos/login/wrong_hwid_screen_handler.cc
@@ -0,0 +1,83 @@
+// Copyright (c) 2013 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/wrong_hwid_screen_handler.h"
+
+#include "base/bind.h"
+#include "base/values.h"
+#include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h"
+#include "grit/chromium_strings.h"
+#include "grit/generated_resources.h"
+#include "ui/base/l10n/l10n_util.h"
+
+namespace chromeos {
+
+WrongHWIDScreenHandler::WrongHWIDScreenHandler()
+ : delegate_(NULL), show_on_init_(false) {
+}
+
+WrongHWIDScreenHandler::~WrongHWIDScreenHandler() {
+ if (delegate_)
+ delegate_->OnActorDestroyed(this);
+}
+
+void WrongHWIDScreenHandler::PrepareToShow() {
+}
+
+void WrongHWIDScreenHandler::Show() {
+ if (!page_is_ready()) {
+ show_on_init_ = true;
+ return;
+ }
+ ShowScreen(OobeUI::kScreenWrongHWID, NULL);
+}
+
+void WrongHWIDScreenHandler::Hide() {
+}
+
+void WrongHWIDScreenHandler::SetDelegate(Delegate* delegate) {
+ delegate_ = delegate;
+ if (page_is_ready())
+ Initialize();
+}
+
+void WrongHWIDScreenHandler::GetLocalizedStrings(
+ base::DictionaryValue* localized_strings) {
+ localized_strings->SetString(
+ "wrongHWIDScreenHeader",
+ l10n_util::GetStringUTF16(IDS_WRONG_HWID_SCREEN_HEADER));
+ localized_strings->SetString(
+ "wrongHWIDMessageFirstPart",
+ l10n_util::GetStringUTF16(IDS_WRONG_HWID_SCREEN_MESSAGE_FIRST_PART));
+ localized_strings->SetString(
+ "wrongHWIDMessageSecondPart",
+ l10n_util::GetStringUTF16(IDS_WRONG_HWID_SCREEN_MESSAGE_SECOND_PART));
+ localized_strings->SetString(
+ "wrongHWIDScreenSkipLink",
+ l10n_util::GetStringUTF16(IDS_WRONG_HWID_SCREEN_SKIP_LINK));
+}
+
+void WrongHWIDScreenHandler::Initialize() {
+ if (!page_is_ready() || !delegate_)
+ return;
+
+ if (show_on_init_) {
+ Show();
+ show_on_init_ = false;
+ }
+}
+
+void WrongHWIDScreenHandler::RegisterMessages() {
+ web_ui()->RegisterMessageCallback("wrongHWIDOnSkip",
+ base::Bind(&WrongHWIDScreenHandler::HandleOnSkip,
+ base::Unretained(this)));
+}
+
+void WrongHWIDScreenHandler::HandleOnSkip(const base::ListValue* args) {
+ if (delegate_)
+ delegate_->OnExit();
+}
+
+} // namespace chromeos
+
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/wrong_hwid_screen_handler.h ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698