#include "components/sync/service/glue/sync_transport_data_prefs.h"
#include <memory>
#include <utility>
#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "components/sync/base/features.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer {
namespace {
class SyncTransportDataPrefsTest : public testing::Test { … };
TEST_F(SyncTransportDataPrefsTest, PollInterval) { … }
TEST_F(SyncTransportDataPrefsTest, ResetsVeryShortPollInterval) { … }
TEST_F(SyncTransportDataPrefsTest, LastSyncTime) { … }
TEST_F(SyncTransportDataPrefsTest, Clear) { … }
TEST_F(SyncTransportDataPrefsTest, ValuesAreAccountScoped) { … }
}
}