Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2018 The Chromium Authors |
Aldo Culquicondor | b8985eb | 2018-09-06 22:27:44 | [diff] [blame] | 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_SCHEDULER_UI_INTERFACE_H_ |
| 6 | #define CHROME_BROWSER_VR_SCHEDULER_UI_INTERFACE_H_ |
| 7 | |
Christopher Grant | f47c6e5 | 2019-01-02 20:05:11 | [diff] [blame] | 8 | #include "chrome/browser/vr/vr_base_export.h" |
Aldo Culquicondor | b8985eb | 2018-09-06 22:27:44 | [diff] [blame] | 9 | |
| 10 | namespace vr { |
| 11 | |
Christopher Grant | f47c6e5 | 2019-01-02 20:05:11 | [diff] [blame] | 12 | class VR_BASE_EXPORT SchedulerUiInterface { |
Aldo Culquicondor | b8985eb | 2018-09-06 22:27:44 | [diff] [blame] | 13 | public: |
Sorin Jianu | 44cf119 | 2024-12-02 20:21:34 | [diff] [blame] | 14 | virtual ~SchedulerUiInterface() = default; |
Aldo Culquicondor | b8985eb | 2018-09-06 22:27:44 | [diff] [blame] | 15 | |
| 16 | virtual void OnWebXrFrameAvailable() = 0; |
| 17 | virtual void OnWebXrTimedOut() = 0; |
| 18 | virtual void OnWebXrTimeoutImminent() = 0; |
| 19 | }; |
| 20 | |
| 21 | } // namespace vr |
|
|