Unfork chome code related to extensions and pepper plugins (issue #1947)

This commit is contained in:
Marshall Greenblatt
2016-08-04 15:37:53 +03:00
parent 98f59f47fd
commit 5444c389fd
21 changed files with 175 additions and 710 deletions

View File

@@ -7,19 +7,23 @@
#include <memory>
class PrefService;
namespace base {
class FilePath;
}
class PrefService;
class Profile;
namespace browser_prefs {
// Name for the user prefs JSON file.
extern const char kUserPrefsFileName[];
// Create the PrefService used to manage pref registration and storage.
std::unique_ptr<PrefService> CreatePrefService(const base::FilePath& pref_path);
std::unique_ptr<PrefService> CreatePrefService(
Profile* profile,
const base::FilePath& cache_path,
bool persist_user_preferences);
} // namespace browser_prefs