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

Side by Side Diff: chrome/browser/chromeos/profiles/profile_helper.h

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

Powered by Google App Engine
This is Rietveld 408576698