blob: e2a8f426173b011a18f5ab7529f06d19f6d1527d [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2020 The Chromium Authors
Eric Willigersd3492ce2020-12-11 14:51:082// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_WEB_APPLICATIONS_SHARE_TARGET_UTILS_H_
6#define CHROME_BROWSER_UI_WEB_APPLICATIONS_SHARE_TARGET_UTILS_H_
7
8#include <string>
9#include <vector>
10
11#include "chrome/browser/ui/browser_navigator_params.h"
Nancy Wang2ab1e7e2022-06-27 04:11:1012#include "components/services/app_service/public/cpp/intent.h"
Eric Willigersd3492ce2020-12-11 14:51:0813
14class Browser;
15
16namespace apps {
17struct ShareTarget;
18} // namespace apps
19
20namespace web_app {
21
22struct SharedField {
Jan Keitelacf6a132025-05-06 00:05:3323 friend bool operator==(const SharedField&, const SharedField&) = default;
24
Eric Willigersd3492ce2020-12-11 14:51:08