OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "ash/test/test_session_state_delegate.h" | 5 #include "ash/test/test_session_state_delegate.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
92 const { | 92 const { |
93 return user_list_[active_user_index_]; | 93 return user_list_[active_user_index_]; |
94 } | 94 } |
95 | 95 |
96 content::BrowserContext* | 96 content::BrowserContext* |
97 TestSessionStateDelegate::GetBrowserContextByIndex( | 97 TestSessionStateDelegate::GetBrowserContextByIndex( |
98 MultiProfileIndex index) { | 98 MultiProfileIndex index) { |
99 return NULL; | 99 return NULL; |
100 } | 100 } |
101 | 101 |
102 content::BrowserContext* TestSessionStateDelegate::GetBrowserContextForWindow( | |
103 aura::Window* window) { | |
104 return NULL; | |
105 } | |
oshima
2015/04/09 17:50:48
please keep the same order as in the header.
xdai1
2015/04/09 22:45:25
It was in the same order:)
oshima
2015/04/10 20:39:49
oops sorry.
| |
106 | |
102 content::BrowserContext* | 107 content::BrowserContext* |
103 TestSessionStateDelegate::GetBrowserContextForWindow( | 108 TestSessionStateDelegate::GetUserPresentingBrowserContextForWindow( |
104 aura::Window* window) { | 109 aura::Window* window) { |
105 return NULL; | 110 return NULL; |
106 } | 111 } |
107 | 112 |
108 int TestSessionStateDelegate::GetMaximumNumberOfLoggedInUsers() const { | 113 int TestSessionStateDelegate::GetMaximumNumberOfLoggedInUsers() const { |
109 return 3; | 114 return 3; |
110 } | 115 } |
111 | 116 |
112 int TestSessionStateDelegate::NumberOfLoggedInUsers() const { | 117 int TestSessionStateDelegate::NumberOfLoggedInUsers() const { |
113 // TODO(skuhne): Add better test framework to test multiple profiles. | 118 // TODO(skuhne): Add better test framework to test multiple profiles. |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
236 void TestSessionStateDelegate::AddSessionStateObserver( | 241 void TestSessionStateDelegate::AddSessionStateObserver( |
237 SessionStateObserver* observer) { | 242 SessionStateObserver* observer) { |
238 } | 243 } |
239 | 244 |
240 void TestSessionStateDelegate::RemoveSessionStateObserver( | 245 void TestSessionStateDelegate::RemoveSessionStateObserver( |
241 SessionStateObserver* observer) { | 246 SessionStateObserver* observer) { |
242 } | 247 } |
243 | 248 |
244 } // namespace test | 249 } // namespace test |
245 } // namespace ash | 250 } // namespace ash |
OLD | NEW |