summaryrefslogtreecommitdiff
path: root/chromium/ui/base/mojom/ui_base_types.mojom
blob: 82bc476b63928c7866ec4370e662d6351d8ef3df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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 ui.mojom;

// Dialog button identifiers used to specify which buttons to show the user.
enum DialogButton {
  NONE,
  OK,
  CANCEL,
};

// Specifies the type of modality applied to a window. Different modal
// treatments may be handled differently by the window manager.
enum ModalType {
  // Window is not modal.
  NONE,

  // Window is modal to its transient parent.
  WINDOW,

  // Window is modal to a child of its transient parent.
  CHILD,

  // Window is modal to all other windows.
  SYSTEM
};