| Index: chrome/browser/android/vr_shell/vr_gl_thread.cc
|
| diff --git a/chrome/browser/android/vr_shell/vr_gl_thread.cc b/chrome/browser/android/vr_shell/vr_gl_thread.cc
|
| index ae75b85d3e8c2f92dfcf1e1d11b65ed807b61749..4e6db5a54fb8f363a5268874c41c41aacb3ac511 100644
|
| --- a/chrome/browser/android/vr_shell/vr_gl_thread.cc
|
| +++ b/chrome/browser/android/vr_shell/vr_gl_thread.cc
|
| @@ -134,6 +134,13 @@ void VrGLThread::SetFullscreen(bool enabled) {
|
| weak_scene_manager_, enabled));
|
| }
|
|
|
| +void VrGLThread::SetIncognito(bool incognito) {
|
| + WaitUntilThreadStarted();
|
| + task_runner()->PostTask(
|
| + FROM_HERE, base::Bind(&UiSceneManager::SetIncognito, weak_scene_manager_,
|
| + incognito));
|
| +}
|
| +
|
| void VrGLThread::SetHistoryButtonsEnabled(bool can_go_back,
|
| bool can_go_forward) {
|
| WaitUntilThreadStarted();
|
|
|