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

Side by Side Diff: chrome/browser/chromeos/login/screens/update_model.cc

Issue 2684473002: Revert of Fold UpdateModel into UpdateScreen. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/update_model.h ('k') | chrome/browser/chromeos/login/screens/update_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698