| 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 12 matching lines...) Expand all Loading... |
| 23 class Profile; | 23 class Profile; |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class FilePath; | 26 class FilePath; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace extensions { | 29 namespace extensions { |
| 30 class ExtensionGarbageCollectorChromeOSUnitTest; | 30 class ExtensionGarbageCollectorChromeOSUnitTest; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace arc { | |
| 34 class SyncArcPackageHelper; | |
| 35 } | |
| 36 | |
| 37 namespace ash { | 33 namespace ash { |
| 38 namespace test { | 34 namespace test { |
| 39 class MultiUserWindowManagerChromeOSTest; | 35 class MultiUserWindowManagerChromeOSTest; |
| 40 } // namespace test | 36 } // namespace test |
| 41 } // namespace ash | 37 } // namespace ash |
| 42 | 38 |
| 43 namespace policy { | 39 namespace policy { |
| 44 class DeviceStatusCollectorTest; | 40 class DeviceStatusCollectorTest; |
| 45 } // namespace policy | 41 } // namespace policy |
| 46 | 42 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 friend class ExistingUserControllerTest; | 158 friend class ExistingUserControllerTest; |
| 163 friend class extensions::ExtensionGarbageCollectorChromeOSUnitTest; | 159 friend class extensions::ExtensionGarbageCollectorChromeOSUnitTest; |
| 164 friend class FakeChromeUserManager; | 160 friend class FakeChromeUserManager; |
| 165 friend class KioskTest; | 161 friend class KioskTest; |
| 166 friend class MockUserManager; | 162 friend class MockUserManager; |
| 167 friend class MultiProfileUserControllerTest; | 163 friend class MultiProfileUserControllerTest; |
| 168 friend class PrinterDetectorAppSearchEnabledTest; | 164 friend class PrinterDetectorAppSearchEnabledTest; |
| 169 friend class ProfileHelperTest; | 165 friend class ProfileHelperTest; |
| 170 friend class ProfileListChromeOSTest; | 166 friend class ProfileListChromeOSTest; |
| 171 friend class SystemTrayDelegateChromeOSTest; | 167 friend class SystemTrayDelegateChromeOSTest; |
| 172 friend class arc::SyncArcPackageHelper; | |
| 173 friend class ash::test::MultiUserWindowManagerChromeOSTest; | 168 friend class ash::test::MultiUserWindowManagerChromeOSTest; |
| 174 friend class ::ArcAppTest; | 169 friend class ::ArcAppTest; |
| 175 friend class ::SessionControllerClientTest; | 170 friend class ::SessionControllerClientTest; |
| 176 friend class ::test::BrowserFinderChromeOSTest; | 171 friend class ::test::BrowserFinderChromeOSTest; |
| 177 | 172 |
| 178 // Called when signin profile is cleared. | 173 // Called when signin profile is cleared. |
| 179 void OnSigninProfileCleared(); | 174 void OnSigninProfileCleared(); |
| 180 | 175 |
| 181 // BrowsingDataRemover::Observer implementation: | 176 // BrowsingDataRemover::Observer implementation: |
| 182 void OnBrowsingDataRemoverDone() override; | 177 void OnBrowsingDataRemoverDone() override; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 std::unique_ptr<FileFlusher> profile_flusher_; | 235 std::unique_ptr<FileFlusher> profile_flusher_; |
| 241 | 236 |
| 242 base::WeakPtrFactory<ProfileHelper> weak_factory_; | 237 base::WeakPtrFactory<ProfileHelper> weak_factory_; |
| 243 | 238 |
| 244 DISALLOW_COPY_AND_ASSIGN(ProfileHelper); | 239 DISALLOW_COPY_AND_ASSIGN(ProfileHelper); |
| 245 }; | 240 }; |
| 246 | 241 |
| 247 } // namespace chromeos | 242 } // namespace chromeos |
| 248 | 243 |
| 249 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ | 244 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
| OLD | NEW |