#include "components/dom_distiller/core/distilled_page_prefs.h"
#include <memory>
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "components/sync_preferences/testing_pref_service_syncable.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace dom_distiller {
namespace {
class TestingObserver : public DistilledPagePrefs::Observer { … };
}
class DistilledPagePrefsTest : public testing::Test { … };
TEST_F(DistilledPagePrefsTest, TestingOnChangeFontIsBeingCalled) { … }
TEST_F(DistilledPagePrefsTest, TestingMultipleObserversFont) { … }
TEST_F(DistilledPagePrefsTest, TestingOnChangeThemeIsBeingCalled) { … }
TEST_F(DistilledPagePrefsTest, TestingMultipleObserversTheme) { … }
TEST_F(DistilledPagePrefsTest, TestingOnChangeFontScalingIsBeingCalled) { … }
TEST_F(DistilledPagePrefsTest, TestingMultipleObserversFontScaling) { … }
}