| Index: services/ui/ws/display_creation_config.h
|
| diff --git a/services/ui/ws/display_creation_config.h b/services/ui/ws/display_creation_config.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..65b1f529c1fd5699d83813c8543a524effb52c2c
|
| --- /dev/null
|
| +++ b/services/ui/ws/display_creation_config.h
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2017 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 SERVICES_UI_WS_DISPLAY_CREATION_CONFIG_H_
|
| +#define SERVICES_UI_WS_DISPLAY_CREATION_CONFIG_H_
|
| +
|
| +namespace ui {
|
| +namespace ws {
|
| +
|
| +enum class DisplayCreationConfig {
|
| + // Initial state.
|
| + UNKNOWN,
|
| +
|
| + // Displays are created automatically based on the system.
|
| + AUTOMATIC,
|
| +
|
| + // Used when the window manager manually creates displays.
|
| + MANUAL,
|
| +};
|
| +
|
| +} // namespace ws
|
| +} // namespace ui
|
| +
|
| +#endif // SERVICES_UI_WS_DISPLAY_CREATION_CONFIG_H_
|
|
|