chromium/chrome/browser/ui/confirm_bubble_model.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/confirm_bubble_model.h"

#include "base/logging.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/mojom/dialog_button.mojom.h"

ConfirmBubbleModel::ConfirmBubbleModel() = default;
ConfirmBubbleModel::~ConfirmBubbleModel() = default;

std::u16string ConfirmBubbleModel::GetButtonLabel(
    ui::mojom::DialogButton button) const {}

void ConfirmBubbleModel::Accept() {}

void ConfirmBubbleModel::Cancel() {}

std::u16string ConfirmBubbleModel::GetLinkText() const {}

GURL ConfirmBubbleModel::GetHelpPageURL() const {}

void ConfirmBubbleModel::OpenHelpPage() {}