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 #ifndef CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 friend class policy::DeviceStatusCollectorTest; | 163 friend class policy::DeviceStatusCollectorTest; |
164 friend class ExistingUserControllerTest; | 164 friend class ExistingUserControllerTest; |
165 friend class extensions::ExtensionGarbageCollectorChromeOSUnitTest; | 165 friend class extensions::ExtensionGarbageCollectorChromeOSUnitTest; |
166 friend class FakeChromeUserManager; | 166 friend class FakeChromeUserManager; |
167 friend class KioskTest; | 167 friend class KioskTest; |
168 friend class MockUserManager; | 168 friend class MockUserManager; |
169 friend class MultiProfileUserControllerTest; | 169 friend class MultiProfileUserControllerTest; |
170 friend class PrinterDetectorAppSearchEnabledTest; | 170 friend class PrinterDetectorAppSearchEnabledTest; |
171 friend class ProfileHelperTest; | 171 friend class ProfileHelperTest; |
172 friend class ProfileListChromeOSTest; | 172 friend class ProfileListChromeOSTest; |
| 173 friend class QuickUnlockPrivateUnitTest; |
173 friend class SystemTrayDelegateChromeOSTest; | 174 friend class SystemTrayDelegateChromeOSTest; |
174 friend class ash::test::MultiUserWindowManagerChromeOSTest; | 175 friend class ash::test::MultiUserWindowManagerChromeOSTest; |
175 friend class arc::ArcActiveDirectoryEnrollmentTokenFetcherBrowserTest; | 176 friend class arc::ArcActiveDirectoryEnrollmentTokenFetcherBrowserTest; |
176 friend class ::ArcAppTest; | 177 friend class ::ArcAppTest; |
177 friend class ::SessionControllerClientTest; | 178 friend class ::SessionControllerClientTest; |
178 friend class ::test::BrowserFinderChromeOSTest; | 179 friend class ::test::BrowserFinderChromeOSTest; |
179 | 180 |
180 // Called when signin profile is cleared. | 181 // Called when signin profile is cleared. |
181 void OnSigninProfileCleared(); | 182 void OnSigninProfileCleared(); |
182 | 183 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 std::unique_ptr<FileFlusher> profile_flusher_; | 243 std::unique_ptr<FileFlusher> profile_flusher_; |
243 | 244 |
244 base::WeakPtrFactory<ProfileHelper> weak_factory_; | 245 base::WeakPtrFactory<ProfileHelper> weak_factory_; |
245 | 246 |
246 DISALLOW_COPY_AND_ASSIGN(ProfileHelper); | 247 DISALLOW_COPY_AND_ASSIGN(ProfileHelper); |
247 }; | 248 }; |
248 | 249 |
249 } // namespace chromeos | 250 } // namespace chromeos |
250 | 251 |
251 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | 252 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
OLD | NEW |