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

Side by Side Diff: chrome/browser/chromeos/login/ui/models/user_board_model.cc

Issue 2549373005: cros: Refactor of BaseScreen::GetName to BaseScreen::screen_id. (Closed)
Patch Set: Nits Created 3 years, 11 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/ui/models/user_board_model.h" 5 #include "chrome/browser/chromeos/login/ui/models/user_board_model.h"
6 6
7 namespace { 7 namespace {
8 const char kUserBoardScreenName[] = "userBoard"; 8 const char kUserBoardScreenName[] = "userBoard";
9 } 9 }
10 10
11 namespace chromeos { 11 namespace chromeos {
12 12
13 UserBoardModel::UserBoardModel() : BaseScreen(nullptr) {} 13 UserBoardModel::UserBoardModel() : BaseScreen(nullptr, kUserBoardScreenName) {}
14 14
15 UserBoardModel::~UserBoardModel() {} 15 UserBoardModel::~UserBoardModel() {}
16 16
17 std::string UserBoardModel::GetName() const {
18 return kUserBoardScreenName;
19 }
20
21 } // namespace chromeos 17 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/ui/models/user_board_model.h ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698