// Copyright 2012 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_COMPOSITOR_LAYER_TYPE_H_ #define UI_COMPOSITOR_LAYER_TYPE_H_ #include <string_view> #include "ui/compositor/compositor_export.h" namespace ui { enum LayerType { … }; COMPOSITOR_EXPORT std::string_view LayerTypeToString(LayerType type); } // namespace ui #endif // UI_COMPOSITOR_LAYER_TYPE_H_