Chromium Code Reviews| Index: ui/display/mojo/display_constants.mojom |
| diff --git a/ui/display/mojo/display_constants.mojom b/ui/display/mojo/display_constants.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..04578810372c4cb12200867d29ccd2eab20251e8 |
| --- /dev/null |
| +++ b/ui/display/mojo/display_constants.mojom |
| @@ -0,0 +1,18 @@ |
| +// 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. |
| + |
| +module display.mojom; |
| + |
| +// Corresponding to display::DisplayConnectionType |
|
kylechar
2017/02/14 21:35:28
nit: Comment sentence ends with a period.
thanhph1
2017/02/15 15:37:55
Done.
|
| +enum DisplayConnectionType { |
| + DISPLAY_CONNECTION_TYPE_NONE = 0, |
| + DISPLAY_CONNECTION_TYPE_UNKNOWN = 1, |
| + DISPLAY_CONNECTION_TYPE_INTERNAL = 2, |
| + DISPLAY_CONNECTION_TYPE_VGA = 4, |
| + DISPLAY_CONNECTION_TYPE_HDMI = 8, |
| + DISPLAY_CONNECTION_TYPE_DVI = 16, |
| + DISPLAY_CONNECTION_TYPE_DISPLAYPORT = 32, |
| + DISPLAY_CONNECTION_TYPE_NETWORK = 64, |
| + DISPLAY_CONNECTION_TYPE_VIRTUAL = 128, |
| +}; |