blob: f2103bf2ca6f0b60f7bb1cfcf6d2f96b326b51e1 [file] [log] [blame]
// Copyright 2018 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.
#ifndef CHROME_BROWSER_VR_BROWSER_RENDERER_BROWSER_INTERFACE_H_
#define CHROME_BROWSER_VR_BROWSER_RENDERER_BROWSER_INTERFACE_H_
#include "chrome/browser/vr/ui_test_input.h"
namespace vr {
// BrowserRenderer talks to the browser main thread through this interface.
class BrowserRendererBrowserInterface {
public:
virtual ~BrowserRendererBrowserInterface() = default;
virtual void ForceExitVr() = 0;
virtual void ReportUiOperationResultForTesting(
const UiTestOperationType& action_type,
const UiTestOperationResult& result) = 0;
};
} // namespace vr
#endif // CHROME_BROWSER_VR_BROWSER_RENDERER_BROWSER_INTERFACE_H_