blob: 0e5c77aa069912c15c2ed573db6c1656fe379e7c [file] [log] [blame]
// Copyright 2016 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.
package org.chromium.chrome.browser.vr_shell;
import android.widget.FrameLayout;
import org.chromium.chrome.browser.tab.Tab;
/**
* Abstracts away the VrShell class, which may or may not be present at runtime depending on
* compile flags.
*/
public interface VrShellInterface {
/**
* Performs native VrShell initialization.
*/
void initializeNative(Tab currentTab, VrShellDelegate delegate);
/**
* Pauses VrShell.
*/
void pause();
/**
* Resumes VrShell.
*/
void resume();
/**
* Destroys VrShell.
*/
void teardown();
/**
* Sets Android VR Mode to |enabled|.
*/
void setVrModeEnabled(boolean enabled);
/**
* Sets whether we're presenting WebVR content or not.
*/
void setWebVrModeEnabled(boolean enabled);
/**
* Returns the GVRLayout as a FrameLayout.
*/
FrameLayout getContainer();
}