blob: 76e644393577b5e00ff3dc4ad7e86c5a7939683d [file] [log] [blame]
// Copyright 2016 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_PREVIEWS_PREVIEWS_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_PREVIEWS_PREVIEWS_INFOBAR_DELEGATE_H_
#include "base/strings/string16.h"
#include "base/time/time.h"
#include "chrome/browser/previews/previews_ui_tab_helper.h"
#include "components/infobars/core/confirm_infobar_delegate.h"
#include "components/previews/core/previews_experiments.h"
class PreviewsUITabHelper;
namespace content {
class WebContents;
}
namespace previews {
class PreviewsUIService;
}
// Shows an infobar that lets the user know that a preview page has been loaded,
// and gives the user a link to reload the original page. This infobar will only
// be shown once per page load. Records UMA data for user interactions with the
// infobar.
class PreviewsInfoBarDelegate : public ConfirmInfoBarDelegate {
public:
// Actions on the previews infobar. This enum must remain synchronized with
// the enum of the same name in metrics/histograms/histograms.xml.
enum PreviewsInfoBarAction {
INFOBAR_SHOWN = 0,
INFOBAR_LOAD_ORIGINAL_CLICKED = 1,
INFOBAR_DISMISSED_BY_USER = 2,
INFOBAR_DISMISSED_BY_NAVIGATION = 3,
INFOBAR_DISMISSED_BY_RELOAD = 4,
INFOBAR_DISMISSED_BY_TAB_CLOSURE = 5,
INFOBAR_INDEX_BOUNDARY
};
~PreviewsInfoBarDelegate() override;
// Creates a preview infobar and corresponding delegate and adds the infobar
// to InfoBarService. |on_dismiss_callback| is called when the InfoBar is
// dismissed.
static void Create(content::WebContents* web_contents,
previews::PreviewsType previews_type,
bool is_data_saver_user,
previews::PreviewsUIService* previews_ui_service);
// ConfirmInfoBarDelegate overrides:
int GetIconId() const override;
base::string16 GetMessageText() const override;
base::string16 GetLinkText() const override;
base::string16 GetStalePreviewTimestampText() const;
private:
PreviewsInfoBarDelegate(PreviewsUITabHelper* ui_tab_helper,
previews::PreviewsType previews_type,
bool is_data_saver_user);
// ConfirmInfoBarDelegate overrides:
infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
bool ShouldExpire(const NavigationDetails& details) const override;
void InfoBarDismissed() override;
int GetButtons() const override;
bool LinkClicked(WindowOpenDisposition disposition) override;
PreviewsUITabHelper* ui_tab_helper_;
previews::PreviewsType previews_type_;
mutable PreviewsInfoBarAction infobar_dismissed_action_;
const base::string16 message_text_;
DISALLOW_COPY_AND_ASSIGN(PreviewsInfoBarDelegate);
};
#endif // CHROME_BROWSER_PREVIEWS_PREVIEWS_INFOBAR_DELEGATE_H_