blob: 107494aa75507ab625fac31a2af8b32deb8bf90f [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBLAYER_PUBLIC_ERROR_PAGE_H_
#define WEBLAYER_PUBLIC_ERROR_PAGE_H_
#include <string>
namespace weblayer {
// Contains the html to show when an error is encountered.
struct ErrorPage {
std::string html;
};
} // namespace weblayer
#endif // WEBLAYER_PUBLIC_ERROR_PAGE_H_