chromium/chrome/browser/ui/views/web_apps/frame_toolbar/web_app_frame_toolbar_test_helper.h

// Copyright 2019 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_VIEWS_WEB_APPS_FRAME_TOOLBAR_WEB_APP_FRAME_TOOLBAR_TEST_HELPER_H_
#define CHROME_BROWSER_UI_VIEWS_WEB_APPS_FRAME_TOOLBAR_WEB_APP_FRAME_TOOLBAR_TEST_HELPER_H_

#include <memory>
#include <string>
#include <string_view>

#include "base/memory/raw_ptr.h"
#include "base/values.h"
#include "components/webapps/common/web_app_id.h"
#include "content/public/browser/web_contents.h"

class Browser;
class BrowserNonClientFrameView;
class BrowserView;
class Profile;
class GURL;
class WebAppFrameToolbarView;
class WebAppOriginText;

namespace base {
class ScopedTempDir;
}  // namespace base

namespace net::test_server {
class EmbeddedTestServer;
}  // namespace net::test_server

namespace views {
class View;
}  // namespace views

namespace web_app {
struct WebAppInstallInfo;
}  // namespace web_app

// Mixin for setting up and launching a web app in a browser test.
class WebAppFrameToolbarTestHelper {};

#endif  // CHROME_BROWSER_UI_VIEWS_WEB_APPS_FRAME_TOOLBAR_WEB_APP_FRAME_TOOLBAR_TEST_HELPER_H_