blob: 8710c9967d7bd8d8f8bf70f5887f884ec94dcdb6 [file] [log] [blame]
// 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_TAB_GROUP_SYNC_TAB_GROUP_SYNC_UTILS_H_
#define CHROME_BROWSER_TAB_GROUP_SYNC_TAB_GROUP_SYNC_UTILS_H_
namespace content {
class NavigationHandle;
}
namespace tab_groups {
class TabGroupSyncUtils {
public:
// Whether the destination URL from a NavigationHandle can be saved and
// can be reloaded later on another machine.
static bool IsSaveableNavigation(
content::NavigationHandle* navigation_handle);
};
} // namespace tab_groups
#endif // CHROME_BROWSER_TAB_GROUP_SYNC_TAB_GROUP_SYNC_UTILS_H_