blob: eb0e066f2484c2825e7ed059fe9ebcb7ac7df00f [file] [log] [blame]
// Copyright 2015 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_PERMISSIONS_PERMISSION_UTIL_H_
#define CHROME_BROWSER_PERMISSIONS_PERMISSION_UTIL_H_
#include <string>
#include "base/macros.h"
#include "components/content_settings/core/common/content_settings_types.h"
namespace content {
enum class PermissionType;
} // namespace content
// A utility class for permissions.
class PermissionUtil {
public:
// Returns the permission string for the given PermissionType.
static std::string GetPermissionString(content::PermissionType permission);
// Limited conversion of ContentSettingsType to PermissionType. Intended for
// recording Permission UMA metrics from areas of the codebase which have not
// yet been converted to PermissionType. Returns true if the conversion was
// performed.
// TODO(tsergeant): Remove this function once callsites operate on
// PermissionType directly.
static bool GetPermissionType(ContentSettingsType type,
content::PermissionType* out);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(PermissionUtil);
};
#endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_UTIL_H_