blob: a6608cdb8185088ef798027ec8037780856098fa [file] [log] [blame]
David Bienvenu7c545042024-05-03 18:12:341// 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
8namespace base {
9class FilePath;
10} // namespace base
11
12namespace shortcuts {
13
14// Path of chrome_proxy.exe, whose shortcuts are used to launch PWAs and open
15// non-app urls.
16base::FilePath GetChromeProxyPath();
17
18} // namespace shortcuts
19
20#endif // CHROME_BROWSER_SHORTCUTS_PLATFORM_UTIL_WIN_H_