| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM with a few requests
// (Primary) account that participates in multi-signin.nit: how about preserving this comment?
DCHECK(primary_user);Let's use CHECK instead of DCHECK.
protected:Can we keep protected before private?
raw_ptr<arc::ArcWallpaperService, DanglingUntriaged> service_ = nullptr;Nice to reset this pointer on TearDown and drop DanglingUntriaged.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
// (Primary) account that participates in multi-signin.nit: how about preserving this comment?
Done
Let's use CHECK instead of DCHECK.
Done
Can we keep protected before private?
Done
raw_ptr<arc::ArcWallpaperService, DanglingUntriaged> service_ = nullptr;Nice to reset this pointer on TearDown and drop DanglingUntriaged.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
5 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/browser/ash/arc/wallpaper/arc_wallpaper_service_unittest.cc
Insertions: 7, Deletions: 6.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/browser/ash/arc/auth/arc_auth_service.cc
Insertions: 4, Deletions: 0.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/browser/ash/arc/wallpaper/arc_wallpaper_service.cc
Insertions: 4, Deletions: 3.
The diff is too large to show. Please review the diff.
```
arc: UserManager/SessionManager usage in ARC services
- Replace user_manager::UserManager::GetPrimaryUser() with
session_manager::SessionManager::GetPrimarySession() in
ArcAuthService, ArcBluetoothBridge, ArcWallpaperService, and Arc UMA.
- Replace deprecated FakeChromeUserManager, ScopedUserManager, and
manual SessionManager setup in unit tests with
ash::test::TestUserSessionManager.
- Enforce strict LIFO teardown order, check nodiscard returns with
ASSERT_TRUE, and align SetUp() initialization order with class member
declaration order across unit tests.
TAG=agy
CONV=95bb43ef-75f9-4667-81fe-c7efbc76f892
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |