chromium/components/dom_distiller/core/distilled_page_prefs_unittests.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {};

}  // namespace

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) {}

}  // namespace dom_distiller