OLD | NEW |
| (Empty) |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/chromeos/login/screens/update_model.h" | |
6 | |
7 #include "chrome/browser/chromeos/login/wizard_controller.h" | |
8 | |
9 namespace chromeos { | |
10 | |
11 const char UpdateModel::kUserActionCancelUpdateShortcut[] = "cancel-update"; | |
12 const char UpdateModel::kContextKeyEstimatedTimeLeftSec[] = "time-left-sec"; | |
13 const char UpdateModel::kContextKeyShowEstimatedTimeLeft[] = "show-time-left"; | |
14 const char UpdateModel::kContextKeyUpdateMessage[] = "update-msg"; | |
15 const char UpdateModel::kContextKeyShowCurtain[] = "show-curtain"; | |
16 const char UpdateModel::kContextKeyShowProgressMessage[] = "show-progress-msg"; | |
17 const char UpdateModel::kContextKeyProgress[] = "progress"; | |
18 const char UpdateModel::kContextKeyProgressMessage[] = "progress-msg"; | |
19 const char UpdateModel::kContextKeyCancelUpdateShortcutEnabled[] = | |
20 "cancel-update-enabled"; | |
21 | |
22 UpdateModel::UpdateModel(BaseScreenDelegate* base_screen_delegate) | |
23 : BaseScreen(base_screen_delegate, OobeScreen::SCREEN_OOBE_UPDATE) {} | |
24 | |
25 UpdateModel::~UpdateModel() {} | |
26 | |
27 } // namespace chromeos | |
OLD | NEW |