chromium/chrome/browser/web_applications/tabbed_mode_scope_matcher.h

// Copyright 2024 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_WEB_APPLICATIONS_TABBED_MODE_SCOPE_MATCHER_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_TABBED_MODE_SCOPE_MATCHER_H_

#include <optional>

#include "third_party/blink/public/common/safe_url_pattern.h"
#include "third_party/re2/src/re2/set.h"
#include "url/gurl.h"

namespace web_app {

// A helper class to abstract the process of matching URLs against a home tab
// scope (communicated from the renderer process via blink::SafeUrlPattern) for
// tabbed mode.
class TabbedModeScopeMatcher {};

}  // namespace web_app

#endif  // CHROME_BROWSER_WEB_APPLICATIONS_TABBED_MODE_SCOPE_MATCHER_H_