blob: fac3d7fe2e4432ebe2fd7b45ea6056545337000b [file] [log] [blame]
// Copyright 2018 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_CHROMEOS_LOGIN_SCREENS_DISCOVER_SCREEN_VIEW_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_DISCOVER_SCREEN_VIEW_H_
#include "chrome/browser/chromeos/login/oobe_screen.h"
namespace chromeos {
class DiscoverScreen;
// Interface for dependency injection between DiscoverScreen and its
// WebUI representation.
class DiscoverScreenView {
public:
constexpr static OobeScreen kScreenId = OobeScreen::SCREEN_DISCOVER;
virtual ~DiscoverScreenView() = default;
// Sets screen this view belongs to.
virtual void Bind(DiscoverScreen* screen) = 0;
// Shows the contents of the screen.
virtual void Show() = 0;
// Hides the contents of the screen.
virtual void Hide() = 0;
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_DISCOVER_SCREEN_VIEW_H_