| Index: chrome/browser/android/vr_shell/vr_tab_helper.cc
|
| diff --git a/chrome/browser/android/vr_shell/vr_tab_helper.cc b/chrome/browser/android/vr_shell/vr_tab_helper.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..827c37283aa7ea6d022259c72970d0fb7d1d5704
|
| --- /dev/null
|
| +++ b/chrome/browser/android/vr_shell/vr_tab_helper.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2017 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.
|
| +
|
| +#include "chrome/browser/android/vr_shell/vr_tab_helper.h"
|
| +
|
| +#include "chrome/browser/android/vr_shell/vr_shell_delegate.h"
|
| +#include "device/vr/android/gvr/gvr_delegate_provider.h"
|
| +
|
| +DEFINE_WEB_CONTENTS_USER_DATA_KEY(vr_shell::VrTabHelper);
|
| +
|
| +namespace vr_shell {
|
| +
|
| +VrTabHelper::VrTabHelper(content::WebContents* contents)
|
| + : content::WebContentsObserver(contents) {}
|
| +VrTabHelper::~VrTabHelper() {}
|
| +
|
| +} // namespace vr_shell
|
|
|