| Index: chrome/browser/android/vr_shell/toolbar_helper.h
|
| diff --git a/chrome/browser/android/vr_shell/toolbar_helper.h b/chrome/browser/android/vr_shell/toolbar_helper.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c87491d89f20f9357fcd6778f3b967657329d97c
|
| --- /dev/null
|
| +++ b/chrome/browser/android/vr_shell/toolbar_helper.h
|
| @@ -0,0 +1,36 @@
|
| +// 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.
|
| +
|
| +#ifndef CHROME_BROWSER_ANDROID_VR_SHELL_TOOLBAR_HELPER_H_
|
| +#define CHROME_BROWSER_ANDROID_VR_SHELL_TOOLBAR_HELPER_H_
|
| +
|
| +#include "chrome/browser/android/vr_shell/toolbar_state.h"
|
| +#include "chrome/browser/android/vr_shell/ui_interface.h"
|
| +
|
| +class ToolbarModel;
|
| +class ToolbarModelDelegate;
|
| +
|
| +namespace vr_shell {
|
| +
|
| +class UiInterface;
|
| +
|
| +// This class houses an instance of ToolbarModel, and queries it when requested,
|
| +// passing a snapshot of the toolbar state to the UI when necessary.
|
| +class ToolbarHelper {
|
| + public:
|
| + ToolbarHelper(UiInterface* ui, ToolbarModelDelegate* delegate);
|
| + virtual ~ToolbarHelper();
|
| +
|
| + // Poll ToolbarModel and post an update to the UI if state has changed.
|
| + void Update();
|
| +
|
| + private:
|
| + UiInterface* ui_;
|
| + std::unique_ptr<ToolbarModel> toolbar_model_;
|
| + ToolbarState current_state_;
|
| +};
|
| +
|
| +} // namespace vr_shell
|
| +
|
| +#endif // CHROME_BROWSER_ANDROID_VR_SHELL_TOOLBAR_HELPER_H_
|
|
|