| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USERS_FAKE_CHROME_USER_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USERS_FAKE_CHROME_USER_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_FAKE_CHROME_USER_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_FAKE_CHROME_USER_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/chromeos/login/user_flow.h" | 13 #include "chrome/browser/chromeos/login/user_flow.h" |
| 13 #include "chrome/browser/chromeos/login/users/user_manager_interface.h" | 14 #include "chrome/browser/chromeos/login/users/user_manager_interface.h" |
| 14 #include "components/user_manager/fake_user_manager.h" | 15 #include "components/user_manager/fake_user_manager.h" |
| 15 #include "components/user_manager/user.h" | 16 #include "components/user_manager/user.h" |
| 16 #include "components/user_manager/user_image/user_image.h" | 17 #include "components/user_manager/user_image/user_image.h" |
| 17 #include "components/user_manager/user_manager_base.h" | 18 #include "components/user_manager/user_manager_base.h" |
| 18 | 19 |
| 19 namespace chromeos { | 20 namespace chromeos { |
| 20 | 21 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 // Specific flows by user e-mail. | 95 // Specific flows by user e-mail. |
| 95 // Keys should be canonicalized before access. | 96 // Keys should be canonicalized before access. |
| 96 FlowMap specific_flows_; | 97 FlowMap specific_flows_; |
| 97 | 98 |
| 98 DISALLOW_COPY_AND_ASSIGN(FakeChromeUserManager); | 99 DISALLOW_COPY_AND_ASSIGN(FakeChromeUserManager); |
| 99 }; | 100 }; |
| 100 | 101 |
| 101 } // namespace chromeos | 102 } // namespace chromeos |
| 102 | 103 |
| 103 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_FAKE_CHROME_USER_MANAGER_H_ | 104 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_FAKE_CHROME_USER_MANAGER_H_ |
| OLD | NEW |