chromium/chrome/browser/ui/test/test_confirm_bubble_model.cc

// Copyright 2013 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/test/test_confirm_bubble_model.h"

#include <string>

#include "base/strings/utf_string_conversions.h"
#include "ui/base/mojom/dialog_button.mojom.h"

TestConfirmBubbleModel::TestConfirmBubbleModel(bool* model_deleted,
                                               bool* accept_clicked,
                                               bool* cancel_clicked,
                                               bool* link_clicked)
    :{}

TestConfirmBubbleModel::~TestConfirmBubbleModel() {}

std::u16string TestConfirmBubbleModel::GetTitle() const {}

std::u16string TestConfirmBubbleModel::GetMessageText() const {}

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

void TestConfirmBubbleModel::Accept() {}

void TestConfirmBubbleModel::Cancel() {}

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

void TestConfirmBubbleModel::OpenHelpPage() {}