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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.h

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/wizard_controller.h
===================================================================
--- chrome/browser/chromeos/login/wizard_controller.h (revision 48050)
+++ chrome/browser/chromeos/login/wizard_controller.h (working copy)
@@ -20,6 +20,7 @@
class BackgroundView;
class NetworkScreen;
class UpdateScreen;
+class StartupCustomizationDocument;
}
namespace gfx {
@@ -85,6 +86,11 @@
// Overrides observer for testing.
void set_observer(ScreenObserver* observer) { observer_ = observer; }
+ // Sets partner startup customization. WizardController takes ownership
+ // of the document object.
+ void SetCustomization(
+ const chromeos::StartupCustomizationDocument* customization);
+
static const char kNetworkScreenName[];
static const char kLoginScreenName[];
static const char kAccountScreenName[];
@@ -154,6 +160,9 @@
// Default WizardController.
static WizardController* default_controller_;
+ // Partner startup customizations.
+ scoped_ptr<const chromeos::StartupCustomizationDocument> customization_;
+
FRIEND_TEST(WizardControllerFlowTest, ControlFlowErrorNetwork);
FRIEND_TEST(WizardControllerFlowTest, ControlFlowErrorUpdate);
FRIEND_TEST(WizardControllerFlowTest, ControlFlowLanguageOnLogin);
« no previous file with comments | « chrome/browser/chromeos/customization_document_unittest.cc ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698