blob: d29e184cb6aaa8c79f494862bc5aab3520a79851 [file] [log] [blame]
// 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_VR_TOOLBAR_HELPER_H_
#define CHROME_BROWSER_VR_TOOLBAR_HELPER_H_
#include "chrome/browser/vr/toolbar_state.h"
#include "chrome/browser/vr/ui_interface.h"
class ToolbarModel;
class ToolbarModelDelegate;
namespace vr {
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
#endif // CHROME_BROWSER_VR_TOOLBAR_HELPER_H_