blob: 7060b556434d44766a3fe951f6d2efc707e8c306 [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_UI_WEBUI_CHROMEOS_LOGIN_DISCOVER_MODULES_DISCOVER_MODULE_REDEEM_OFFERS_H_
#define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_DISCOVER_MODULES_DISCOVER_MODULE_REDEEM_OFFERS_H_
#include <memory>
#include "base/macros.h"
#include "chrome/browser/ui/webui/chromeos/login/discover/discover_module.h"
namespace chromeos {
class DiscoverModuleRedeemOffers : public DiscoverModule {
public:
DiscoverModuleRedeemOffers();
~DiscoverModuleRedeemOffers() override;
// DiscoverModule:
bool IsCompleted() const override;
std::unique_ptr<DiscoverHandler> CreateWebUIHandler() override;
// Module name.
static const char kModuleName[];
private:
DISALLOW_COPY_AND_ASSIGN(DiscoverModuleRedeemOffers);
};
} // namespace chromeos
#endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_DISCOVER_MODULES_DISCOVER_MODULE_REDEEM_OFFERS_H_