Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2020 The Chromium Authors |
Eric Willigers | d3492ce | 2020-12-11 14:51:08 | [diff] [blame] | 2 | // 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 Wang | 2ab1e7e | 2022-06-27 04:11:10 | [diff] [blame] | 12 | #include "components/services/app_service/public/cpp/intent.h" |
Eric Willigers | d3492ce | 2020-12-11 14:51:08 | [diff] [blame] | 13 | |
| 14 | class Browser; |
| 15 | |
| 16 | namespace apps { |
| 17 | struct ShareTarget; |
| 18 | } // namespace apps |
| 19 | |
| 20 | namespace web_app { |
| 21 | |
| 22 | struct SharedField { |
Jan Keitel | acf6a13 | 2025-05-06 00:05:33 | [diff] [blame] | 23 | friend bool operator==(const SharedField&, const SharedField&) = default; |
| 24 | |
Eric Willigers | d3492ce | 2020-12-11 14:51:08 | [diff] [
|