// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_ERROR_PAGE_COMMON_LOCALIZED_ERROR_H_ #define COMPONENTS_ERROR_PAGE_COMMON_LOCALIZED_ERROR_H_ #include <memory> #include <string> #include "base/values.h" #include "url/gurl.h" namespace error_page { // If this property set to true, override the default error page. static constexpr const char kOverrideErrorPage[] = …; // Set to true when the device may be in a portal state. Will be used to show a // suggestion in the error page where appropriate. static constexpr const char kIsPortalStateKey[] = …; class LocalizedError { … }; } // namespace error_page #endif // COMPONENTS_ERROR_PAGE_COMMON_LOCALIZED_ERROR_H_