Tibor Goldschwendt | 554a5a03 | 2017-07-20 18:03:29 | [diff] [blame] | 1 | // 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 | |
| 8 | namespace vr { |
| 9 | |
| 10 | // The answer the user gave to an exit VR prompt. |
| 11 | enum 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_ |