chromium/chrome/browser/ui/url_identity.h

// Copyright 2023 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_UI_URL_IDENTITY_H_
#define CHROME_BROWSER_UI_URL_IDENTITY_H_

#include <string>

#include "base/containers/enum_set.h"

class Profile;
class GURL;

// UrlIdentity is the identity of a URL suitable for displaying to the user.
// UrlIdentity has 2 main properties:
// - name: a string which users can use to identify the url.
// - type: the type of subject. (i.e. site, extension, file, etc)
struct UrlIdentity {};

#endif  // CHROME_BROWSER_UI_URL_IDENTITY_H_