David Bienvenu | 7c54504 | 2024-05-03 18:12:34 | [diff] [blame] | 1 | // Copyright 2024 The Chromium Authors |
| 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_SHORTCUTS_PLATFORM_UTIL_WIN_H_ |
| 6 | #define CHROME_BROWSER_SHORTCUTS_PLATFORM_UTIL_WIN_H_ |
| 7 | |
| 8 | namespace base { |
| 9 | class FilePath; |
| 10 | } // namespace base |
| 11 | |
| 12 | namespace shortcuts { |
| 13 | |
| 14 | // Path of chrome_proxy.exe, whose shortcuts are used to launch PWAs and open |
| 15 | // non-app urls. |
| 16 | base::FilePath GetChromeProxyPath(); |
| 17 | |
| 18 | } // namespace shortcuts |
| 19 | |
| 20 | #endif // CHROME_BROWSER_SHORTCUTS_PLATFORM_UTIL_WIN_H_ |