// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_PROFILES_PROFILE_KEY_H_ #define CHROME_BROWSER_PROFILES_PROFILE_KEY_H_ #include "base/files/file_path.h" #include "base/memory/raw_ptr.h" #include "build/build_config.h" #include "components/keyed_service/core/simple_factory_key.h" #include "components/leveldb_proto/public/proto_database_provider.h" #if BUILDFLAG(IS_ANDROID) #include "chrome/browser/profiles/profile_key_android.h" #endif // BUILDFLAG(IS_ANDROID) class PrefService; // An embryonic Profile with only fields accessible in reduced mode. // Used as a SimpleFactoryKey. class ProfileKey : public SimpleFactoryKey { … }; #endif // CHROME_BROWSER_PROFILES_PROFILE_KEY_H_