// 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 UI_GFX_X_ERROR_H_ #define UI_GFX_X_ERROR_H_ #include <string> #include "base/component_export.h" namespace x11 { // This class is a generic interface for X11 errors. Currently the only // functionality is printing the error as a human-readable string. class COMPONENT_EXPORT(X11) Error { … }; } // namespace x11 #endif // UI_GFX_X_ERROR_H_