// Copyright 2017 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_ERROR_H_ #define COMPONENTS_ERROR_PAGE_COMMON_ERROR_H_ #include <string> #include "net/dns/public/resolve_error_info.h" #include "url/gurl.h" namespace error_page { enum LinkPreviewErrorCode { … }; // Represents an error info necessary to show an error page. // This class is a copiable value class. class Error { … }; } // namespace error_page #endif // COMPONENTS_ERROR_PAGE_COMMON_ERROR_H_