#include "extensions/shell/browser/shell_prefs.h"
#include "base/path_service.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "components/prefs/pref_service.h"
#include "components/user_prefs/user_prefs.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "extensions/common/extension_paths.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace extensions {
namespace {
class PrefsTestBrowserContext : public content::TestBrowserContext { … };
class ShellPrefsTest : public testing::Test { … };
TEST_F(ShellPrefsTest, CreateLocalState) { … }
TEST_F(ShellPrefsTest, CreateUserPrefService) { … }
}
}