Chromium Code Reviews

Side by Side Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 2101021: Adding initial implementation of the PartnerCustomization classes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/wizard_controller.h" 5 #include "chrome/browser/chromeos/login/wizard_controller.h"
6 6
7 #include <gdk/gdk.h> 7 #include <gdk/gdk.h>
8 #include <signal.h> 8 #include <signal.h>
9 #include <sys/types.h> 9 #include <sys/types.h>
10 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "app/l10n_util.h" 14 #include "app/l10n_util.h"
15 #include "base/command_line.h" 15 #include "base/command_line.h"
16 #include "base/logging.h" // For NOTREACHED. 16 #include "base/logging.h" // For NOTREACHED.
17 #include "chrome/browser/chromeos/cros/cros_library.h" 17 #include "chrome/browser/chromeos/cros/cros_library.h"
18 #include "chrome/browser/chromeos/cros/login_library.h" 18 #include "chrome/browser/chromeos/cros/login_library.h"
19 #include "chrome/browser/chromeos/customization_document.h"
19 #include "chrome/browser/chromeos/login/account_screen.h" 20 #include "chrome/browser/chromeos/login/account_screen.h"
20 #include "chrome/browser/chromeos/login/background_view.h" 21 #include "chrome/browser/chromeos/login/background_view.h"
21 #include "chrome/browser/chromeos/login/existing_user_controller.h" 22 #include "chrome/browser/chromeos/login/existing_user_controller.h"
22 #include "chrome/browser/chromeos/login/network_screen.h" 23 #include "chrome/browser/chromeos/login/network_screen.h"
23 #include "chrome/browser/chromeos/login/rounded_rect_painter.h" 24 #include "chrome/browser/chromeos/login/rounded_rect_painter.h"
24 #include "chrome/browser/chromeos/login/update_screen.h" 25 #include "chrome/browser/chromeos/login/update_screen.h"
25 #include "chrome/browser/chromeos/login/user_manager.h" 26 #include "chrome/browser/chromeos/login/user_manager.h"
26 #include "chrome/browser/chromeos/wm_ipc.h" 27 #include "chrome/browser/chromeos/wm_ipc.h"
27 #include "chrome/common/chrome_switches.h" 28 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/notification_service.h" 29 #include "chrome/common/notification_service.h"
(...skipping 126 matching lines...)
155 156
156 // Special test value that commands not to create any window yet. 157 // Special test value that commands not to create any window yet.
157 const char WizardController::kTestNoScreenName[] = "test:nowindow"; 158 const char WizardController::kTestNoScreenName[] = "test:nowindow";
158 159
159 // Initialize default controller. 160 // Initialize default controller.
160 // static 161 // static
161 WizardController* WizardController::default_controller_ = NULL; 162 WizardController* WizardController::default_controller_ = NULL;
162 163
163 /////////////////////////////////////////////////////////////////////////////// 164 ///////////////////////////////////////////////////////////////////////////////
164 // WizardController, public: 165 // WizardController, public:
166
165 WizardController::WizardController() 167 WizardController::WizardController()
166 : widget_(NULL), 168 : widget_(NULL),
167 background_widget_(NULL), 169 background_widget_(NULL),
168 background_view_(NULL), 170 background_view_(NULL),
169 contents_(NULL), 171 contents_(NULL),
170 current_screen_(NULL), 172 current_screen_(NULL),
171 is_out_of_box_(false), 173 is_out_of_box_(false),
172 observer_(NULL) { 174 observer_(NULL) {
173 DCHECK(default_controller_ == NULL); 175 DCHECK(default_controller_ == NULL);
174 default_controller_ = this; 176 default_controller_ = this;
(...skipping 115 matching lines...)
290 } 292 }
291 293
292 void WizardController::SetStatusAreaVisible(bool visible) { 294 void WizardController::SetStatusAreaVisible(bool visible) {
293 // When ExistingUserController passes background ownership 295 // When ExistingUserController passes background ownership
294 // to WizardController it happens after screen is shown. 296 // to WizardController it happens after screen is shown.
295 if (background_view_) { 297 if (background_view_) {
296 background_view_->SetStatusAreaVisible(visible); 298 background_view_->SetStatusAreaVisible(visible);
297 } 299 }
298 } 300 }
299 301
302 void WizardController::SetCustomization(
303 const chromeos::StartupCustomizationDocument* customization) {
304 customization_.reset(customization);
305 }
306
300 /////////////////////////////////////////////////////////////////////////////// 307 ///////////////////////////////////////////////////////////////////////////////
301 // WizardController, ExitHandlers: 308 // WizardController, ExitHandlers:
302 void WizardController::OnLoginSignInSelected() { 309 void WizardController::OnLoginSignInSelected() {
303 // We're on the stack, so don't try and delete us now. 310 // We're on the stack, so don't try and delete us now.
304 MessageLoop::current()->DeleteSoon(FROM_HERE, this); 311 MessageLoop::current()->DeleteSoon(FROM_HERE, this);
305 } 312 }
306 313
307 void WizardController::OnLoginCreateAccount() { 314 void WizardController::OnLoginCreateAccount() {
308 ShowAccountScreen(); 315 ShowAccountScreen();
309 } 316 }
(...skipping 156 matching lines...)
466 switches::kEnableLoginImages)) { 473 switches::kEnableLoginImages)) {
467 std::vector<chromeos::UserManager::User> users = 474 std::vector<chromeos::UserManager::User> users =
468 chromeos::UserManager::Get()->GetUsers(); 475 chromeos::UserManager::Get()->GetUsers();
469 if (!users.empty()) { 476 if (!users.empty()) {
470 // ExistingUserController deletes itself. 477 // ExistingUserController deletes itself.
471 (new chromeos::ExistingUserController(users, screen_bounds))->Init(); 478 (new chromeos::ExistingUserController(users, screen_bounds))->Init();
472 return; 479 return;
473 } 480 }
474 } 481 }
475 482
483 // Load partner customization startup manifest if needed.
484 scoped_ptr<chromeos::StartupCustomizationDocument> customization;
485 if (CommandLine::ForCurrentProcess()->HasSwitch(
486 switches::kStartupManifest)) {
487 customization.reset(new chromeos::StartupCustomizationDocument());
488 FilePath manifest_path =
489 CommandLine::ForCurrentProcess()->GetSwitchValuePath(
490 switches::kStartupManifest);
491 bool manifest_loaded = customization->LoadManifestFromFile(manifest_path);
492 DCHECK(manifest_loaded) << manifest_path.value();
493 }
494
495 // Create and show the wizard.
476 WizardController* controller = new WizardController(); 496 WizardController* controller = new WizardController();
497 controller->SetCustomization(customization.release());
477 controller->ShowBackground(screen_bounds); 498 controller->ShowBackground(screen_bounds);
478 controller->Init(first_screen_name, screen_bounds, true); 499 controller->Init(first_screen_name, screen_bounds, true);
479 controller->Show(); 500 controller->Show();
480 if (chromeos::CrosLibrary::Get()->EnsureLoaded()) 501 if (chromeos::CrosLibrary::Get()->EnsureLoaded())
481 chromeos::CrosLibrary::Get()->GetLoginLibrary()->EmitLoginPromptReady(); 502 chromeos::CrosLibrary::Get()->GetLoginLibrary()->EmitLoginPromptReady();
482 } 503 }
483 504
484 } // namespace browser 505 } // namespace browser
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/wizard_controller.h ('k') | chrome/browser/chromeos/testdata/startup_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine