blob: ae3ccc42ee78f3d03486066e81cd0b4a2c7e340c [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_TEST_SCOPED_EG_SYNCHRONIZATION_DISABLER_H_
#define IOS_CHROME_TEST_SCOPED_EG_SYNCHRONIZATION_DISABLER_H_
#import <Foundation/Foundation.h>
// Disables EarlGrey synchronization in constructor and returns back to the
// original value in destructor.
class ScopedSynchronizationDisabler {
public:
ScopedSynchronizationDisabler();
ScopedSynchronizationDisabler(const ScopedSynchronizationDisabler&) = delete;
ScopedSynchronizationDisabler& operator=(
const ScopedSynchronizationDisabler&) = delete;
~ScopedSynchronizationDisabler();
private:
static bool GetEgSynchronizationEnabled();
static void SetEgSynchronizationEnabled(BOOL flag);
BOOL saved_eg_synchronization_enabled_value_ = NO;
};
#endif // IOS_CHROME_TEST_SCOPED_EG_SYNCHRONIZATION_DISABLER_H_