| // Copyright 2022 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| module web_app.mojom; |
| |
| // Reflects |
| // https://source.chromium.org/chromium/chromium/src/+/main:components/sync/protocol/web_app_specifics.proto;l=44;drc=0758d11f3d4db21e8e8b1b3a5600261fde150afb |
| enum UserDisplayMode { |
| // The user prefers that the web app open in a browser context, like a tab. |
| kBrowser, |
| |
| // The user prefers the web app open in a standalone window experience. |
| kStandalone, |
| |
| // The user wants the web app to open in a standalone window experience with |
| // tabs. |
| kTabbed, |
| }; |