chromium/chrome/browser/extensions/api/tab_groups/tab_groups_constants.h

// Copyright 2020 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_EXTENSIONS_API_TAB_GROUPS_TAB_GROUPS_CONSTANTS_H_
#define CHROME_BROWSER_EXTENSIONS_API_TAB_GROUPS_TAB_GROUPS_CONSTANTS_H_

namespace extensions {

// Constants used for the Tab Groups API.
namespace tab_groups_constants {

// Error messages.
extern const char kCannotMoveGroupIntoMiddleOfOtherGroupError[];
extern const char kCannotMoveGroupIntoMiddleOfPinnedTabsError[];
extern const char kGroupNotFoundError[];

}  // namespace tab_groups_constants
}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_TAB_GROUPS_TAB_GROUPS_CONSTANTS_H_