// Copyright 2023 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_READING_LIST_READING_LIST_API_CONSTANTS_H_ #define CHROME_BROWSER_EXTENSIONS_API_READING_LIST_READING_LIST_API_CONSTANTS_H_ // Constants used for the Reading List API. namespace extensions::reading_list_api_constants { // Error messages. extern const char kInvalidURLError[]; extern const char kNotSupportedURLError[]; extern const char kDuplicateURLError[]; extern const char kURLNotFoundError[]; extern const char kNoUpdateProvided[]; } // namespace extensions::reading_list_api_constants #endif // CHROME_BROWSER_EXTENSIONS_API_READING_LIST_READING_LIST_API_CONSTANTS_H_