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

Unified Diff: ash/system/chromeos/multi_user/user_switch_util_unittest.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: ash/system/chromeos/multi_user/user_switch_util_unittest.cc
diff --git a/ash/system/chromeos/multi_user/user_switch_util_unittest.cc b/ash/system/chromeos/multi_user/user_switch_util_unittest.cc
index adb0bad0fe8b26f37337c8c65afc16a22612df12..e6978443fe307dfd1bee2ffbfdee98e237e73ddb 100644
--- a/ash/system/chromeos/multi_user/user_switch_util_unittest.cc
+++ b/ash/system/chromeos/multi_user/user_switch_util_unittest.cc
@@ -14,8 +14,8 @@ class TrySwitchingUserTest : public ash::test::AshTestBase {
public:
// The action type to perform / check for upon user switching.
enum ActionType {
- NO_DIALOG, // No dialog should be shown.
- ACCEPT_DIALOG, // A dialog should be shown and we should accept it.
+ NO_DIALOG, // No dialog should be shown.
+ ACCEPT_DIALOG, // A dialog should be shown and we should accept it.
DECLINE_DIALOG, // A dialog should be shown and we do not accept it.
};
TrySwitchingUserTest()
@@ -29,7 +29,7 @@ class TrySwitchingUserTest : public ash::test::AshTestBase {
void SetUp() override {
test::AshTestBase::SetUp();
TrayItemView::DisableAnimationsForTest();
- SystemTray* system_tray = Shell::GetInstance()->GetPrimarySystemTray();
+ SystemTray* system_tray = Shell::GetInstance()->GetPrimarySystemTray();
share_item_ = system_tray->GetScreenShareItem();
capture_item_ = system_tray->GetScreenCaptureItem();
EXPECT_TRUE(share_item_);
@@ -39,47 +39,36 @@ class TrySwitchingUserTest : public ash::test::AshTestBase {
// Accessing the capture session functionality.
// Simulates a screen capture session start.
void StartCaptureSession() {
- capture_item_->Start(
- base::Bind(&TrySwitchingUserTest::StopCaptureCallback,
- base::Unretained(this)));
+ capture_item_->Start(base::Bind(&TrySwitchingUserTest::StopCaptureCallback,
+ base::Unretained(this)));
}
// The callback which gets called when the screen capture gets stopped.
- void StopCaptureSession() {
- capture_item_->Stop();
- }
+ void StopCaptureSession() { capture_item_->Stop(); }
// Simulates a screen capture session stop.
- void StopCaptureCallback() {
- stop_capture_callback_hit_count_++;
- }
+ void StopCaptureCallback() { stop_capture_callback_hit_count_++; }
// Accessing the share session functionality.
// Simulate a Screen share session start.
void StartShareSession() {
- share_item_->Start(
- base::Bind(&TrySwitchingUserTest::StopShareCallback,
- base::Unretained(this)));
+ share_item_->Start(base::Bind(&TrySwitchingUserTest::StopShareCallback,
+ base::Unretained(this)));
}
// Simulates a screen share session stop.
- void StopShareSession() {
- share_item_->Stop();
- }
+ void StopShareSession() { share_item_->Stop(); }
// The callback which gets called when the screen share gets stopped.
- void StopShareCallback() {
- stop_share_callback_hit_count_++;
- }
+ void StopShareCallback() { stop_share_callback_hit_count_++; }
// Issuing a switch user call which might or might not create a dialog.
// The passed |action| type parameter defines the outcome (which will be
// checked) and the action the user will choose.
void SwitchUser(ActionType action) {
- TrySwitchingActiveUser(
- base::Bind(&TrySwitchingUserTest::SwitchCallback,
- base::Unretained(this)));
- switch(action) {
+ TrySwitchingActiveUser(base::Bind(&TrySwitchingUserTest::SwitchCallback,
+ base::Unretained(this)));
+ switch (action) {
case NO_DIALOG:
EXPECT_TRUE(!TestAndTerminateDesktopCastingWarningForTest(true));
return;
@@ -93,9 +82,7 @@ class TrySwitchingUserTest : public ash::test::AshTestBase {
}
// Called when the user will get actually switched.
- void SwitchCallback() {
- switch_callback_hit_count_++;
- }
+ void SwitchCallback() { switch_callback_hit_count_++; }
// Various counter accessors.
int stop_capture_callback_hit_count() const {
« no previous file with comments | « ash/system/chromeos/multi_user/user_switch_util.cc ('k') | ash/system/chromeos/network/network_detailed_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698