Index: chrome/browser/chromeos/login/wizard_controller.cc |
=================================================================== |
--- chrome/browser/chromeos/login/wizard_controller.cc (revision 42738) |
+++ chrome/browser/chromeos/login/wizard_controller.cc (working copy) |
@@ -36,14 +36,6 @@ |
const int kWizardScreenWidth = 700; |
const int kWizardScreenHeight = 416; |
-const char kNetworkScreenName[] = "network"; |
-const char kLoginScreenName[] = "login"; |
-const char kAccountScreenName[] = "account"; |
-const char kUpdateScreenName[] = "update"; |
- |
-// Passing this parameter as a "first screen" initiates full OOBE flow. |
-const char kOutOfBoxScreenName[] = "oobe"; |
- |
// RootView of the Widget WizardController creates. Contains the contents of the |
// WizardController. |
class ContentView : public views::View { |
@@ -106,6 +98,14 @@ |
} // namespace |
+const char WizardController::kNetworkScreenName[] = "network"; |
+const char WizardController::kLoginScreenName[] = "login"; |
+const char WizardController::kAccountScreenName[] = "account"; |
+const char WizardController::kUpdateScreenName[] = "update"; |
+ |
+// Passing this parameter as a "first screen" initiates full OOBE flow. |
+const char WizardController::kOutOfBoxScreenName[] = "oobe"; |
+ |
// Initialize default controller. |
// static |
WizardController* WizardController::default_controller_ = NULL; |