// Copyright 2014 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_SESSIONS_SESSION_SERVICE_UTILS_H_
#define CHROME_BROWSER_SESSIONS_SESSION_SERVICE_UTILS_H_

#include "chrome/browser/ui/browser_window/public/browser_window_interface.h"
#include "components/sessions/core/session_types.h"

// Convert back/forward between the Browser and SessionService window types.
sessions::SessionWindow::WindowType WindowTypeForBrowserType(
    BrowserWindowInterface::Type type);
BrowserWindowInterface::Type BrowserTypeForWindowType(
    sessions::SessionWindow::WindowType type);

#endif  // CHROME_BROWSER_SESSIONS_SESSION_SERVICE_UTILS_H_
