// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTENT_SETTINGS_HELPERS_H__ #define CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTENT_SETTINGS_HELPERS_H__ #pragma once #include #include "chrome/common/content_settings.h" namespace extension_content_settings_helpers { // Converts a content settings type string to the corresponding // ContentSettingsType. Returns CONTENT_SETTINGS_TYPE_DEFAULT if the string // didn't specify a valid content settings type. ContentSettingsType StringToContentSettingsType( const std::string& content_type); // Returns a string representation of a ContentSettingsType. const char* ContentSettingsTypeToString(ContentSettingsType type); // Converts a content setting string to the corresponding ContentSetting. // Returns true if |setting_str| specifies a valid content setting, // false otherwise. bool StringToContentSetting(const std::string& setting_str, ContentSetting* setting); // Returns a string representation of a ContentSetting. const char* ContentSettingToString(ContentSetting setting); } // namespace extension_content_settings_helpers #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTENT_SETTINGS_HELPERS_H__