blob: f8fada124aa211e0312a6e2fd229abc836dbb80c [file] [log] [blame]
Tibor Goldschwendt554a5a032017-07-20 18:03:291// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_VR_EXIT_VR_PROMPT_CHOICE_H_
6#define CHROME_BROWSER_VR_EXIT_VR_PROMPT_CHOICE_H_
7
8namespace vr {
9
10// The answer the user gave to an exit VR prompt.
11enum ExitVrPromptChoice {
12 CHOICE_NONE, // No answer give, e.g. user dismissed exit prompt or another
13 // exit request was opened.
14 CHOICE_EXIT, // User wants to exit VR.
15 CHOICE_STAY, // User want to stay in VR.
16};
17
18} // namespace vr
19
20#endif // CHROME_BROWSER_VR_EXIT_VR_PROMPT_CHOICE_H_