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

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

Issue 3058006: Add API on host registration page. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: fixes Created 10 years, 5 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 | chrome/browser/chromeos/login/web_page_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/registration_screen.cc
diff --git a/chrome/browser/chromeos/login/registration_screen.cc b/chrome/browser/chromeos/login/registration_screen.cc
index 40348d7a6d9069950ffe5b2c3b772c4cd3309dc6..79d2b45a2d988b8436f1b9126a4a3e5dbc507279 100644
--- a/chrome/browser/chromeos/login/registration_screen.cc
+++ b/chrome/browser/chromeos/login/registration_screen.cc
@@ -106,9 +106,11 @@ void RegistrationScreen::OnPageLoadFailed(const std::string& url) {
PageTransition::Type transition) {
if (url.spec() == kRegistrationSuccessUrl) {
source->Stop();
+ LOG(INFO) << "Registration form completed.";
CloseScreen(ScreenObserver::REGISTRATION_SUCCESS);
} else if (url.spec() == kRegistrationSkippedUrl) {
source->Stop();
+ LOG(INFO) << "Registration form skipped.";
CloseScreen(ScreenObserver::REGISTRATION_SKIPPED);
} else {
source->Stop();
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/web_page_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698