// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/browser/pref_names.h" #include "base/notreached.h" #include "build/build_config.h" #include "extensions/common/api/types.h" namespace extensions { namespace pref_names { ChromeSettingScope; bool ScopeToPrefName(ChromeSettingScope scope, std::string* result) { … } const char kPrefPreferences[] = …; const char kPrefIncognitoPreferences[] = …; const char kPrefRegularOnlyPreferences[] = …; const char kPrefContentSettings[] = …; const char kPrefIncognitoContentSettings[] = …; } // namespace pref_names } // namespace extensions