chromium/chrome/browser/ui/shortcuts/desktop_shortcuts_utils.h

// Copyright 2024 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_SHORTCUTS_DESKTOP_SHORTCUTS_UTILS_H_
#define CHROME_BROWSER_UI_SHORTCUTS_DESKTOP_SHORTCUTS_UTILS_H_

class Browser;

namespace shortcuts {

// Returns whether a desktop shortcut can be created for the active web
// contents.
bool CanCreateDesktopShortcut(Browser* browser);

}  // namespace shortcuts

#endif  // CHROME_BROWSER_UI_SHORTCUTS_DESKTOP_SHORTCUTS_UTILS_H_