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

Side by Side Diff: chrome/browser/chromeos/login/user_flow.cc

Issue 656283002: [session_manager] Move user session initialization code out of ExistingUserController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move first run session init and browser launch out of EUC Created 6 years, 2 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/message_loop/message_loop.h" 6 #include "base/message_loop/message_loop.h"
7 #include "chrome/browser/chromeos/login/user_flow.h" 7 #include "chrome/browser/chromeos/login/user_flow.h"
8 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h" 8 #include "chrome/browser/chromeos/login/users/chrome_user_manager.h"
9 9
10 namespace chromeos { 10 namespace chromeos {
11 11
12 namespace { 12 namespace {
13 13
14 void UnregisterFlow(const std::string& user_id) { 14 void UnregisterFlow(const std::string& user_id) {
15 ChromeUserManager::Get()->ResetUserFlow(user_id); 15 ChromeUserManager::Get()->ResetUserFlow(user_id);
16 } 16 }
17 17
18 } // namespace 18 } // namespace
19 19
20 20
21 UserFlow::UserFlow() : host_(NULL) {} 21 UserFlow::UserFlow() : host_(NULL) {}
22 22
23 UserFlow::~UserFlow() {} 23 UserFlow::~UserFlow() {}
24 24
25 DefaultUserFlow::~DefaultUserFlow() {} 25 DefaultUserFlow::~DefaultUserFlow() {}
26 26
27 void DefaultUserFlow::AppendAdditionalCommandLineSwitches() {
28 }
29
27 bool DefaultUserFlow::CanLockScreen() { 30 bool DefaultUserFlow::CanLockScreen() {
28 return true; 31 return true;
29 } 32 }
30 33
31 bool DefaultUserFlow::ShouldShowSettings() { 34 bool DefaultUserFlow::ShouldShowSettings() {
32 return true; 35 return true;
33 } 36 }
34 37
35 bool DefaultUserFlow::ShouldLaunchBrowser() { 38 bool DefaultUserFlow::ShouldLaunchBrowser() {
36 return true; 39 return true;
(...skipping 20 matching lines...) Expand all
57 void DefaultUserFlow::LaunchExtraSteps(Profile* profile) { 60 void DefaultUserFlow::LaunchExtraSteps(Profile* profile) {
58 } 61 }
59 62
60 ExtendedUserFlow::ExtendedUserFlow(const std::string& user_id) 63 ExtendedUserFlow::ExtendedUserFlow(const std::string& user_id)
61 : user_id_(user_id) { 64 : user_id_(user_id) {
62 } 65 }
63 66
64 ExtendedUserFlow::~ExtendedUserFlow() { 67 ExtendedUserFlow::~ExtendedUserFlow() {
65 } 68 }
66 69
70 void ExtendedUserFlow::AppendAdditionalCommandLineSwitches() {
71 }
72
67 bool ExtendedUserFlow::ShouldShowSettings() { 73 bool ExtendedUserFlow::ShouldShowSettings() {
68 return true; 74 return true;
69 } 75 }
70 76
77 void ExtendedUserFlow::HandleOAuthTokenStatusChange(
78 user_manager::User::OAuthTokenStatus status) {
79 }
80
71 void ExtendedUserFlow::UnregisterFlowSoon() { 81 void ExtendedUserFlow::UnregisterFlowSoon() {
72 std::string id_copy(user_id()); 82 std::string id_copy(user_id());
73 base::MessageLoop::current()->PostTask(FROM_HERE, 83 base::MessageLoop::current()->PostTask(FROM_HERE,
74 base::Bind(&UnregisterFlow, 84 base::Bind(&UnregisterFlow,
75 id_copy)); 85 id_copy));
76 } 86 }
77 87
78 } // namespace chromeos 88 } // namespace chromeos
OLDNEW
« chrome/browser/chromeos/login/user_flow.h ('K') | « chrome/browser/chromeos/login/user_flow.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698