chromium/ui/web_dialogs/test/test_web_dialog_delegate.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 "ui/web_dialogs/test/test_web_dialog_delegate.h"

#include "base/check.h"
#include "base/strings/utf_string_conversions.h"

WebContents;
WebUIMessageHandler;

namespace ui {
namespace test {

TestWebDialogDelegate::TestWebDialogDelegate(const GURL& url)
    :{}

TestWebDialogDelegate::~TestWebDialogDelegate() {}

void TestWebDialogDelegate::SetDeleteOnClosedAndObserve(
    bool* destroy_observer) {}

void TestWebDialogDelegate::SetCloseOnEscape(bool enabled) {}

ui::mojom::ModalType TestWebDialogDelegate::GetDialogModalType() const {}

std::u16string TestWebDialogDelegate::GetDialogTitle() const {}

GURL TestWebDialogDelegate::GetDialogContentURL() const {}

void TestWebDialogDelegate::GetDialogSize(gfx::Size* size) const {}

std::string TestWebDialogDelegate::GetDialogArgs() const {}

void TestWebDialogDelegate::OnDialogClosed(const std::string& json_retval) {}

void TestWebDialogDelegate::OnCloseContents(WebContents* source,
                                            bool* out_close_dialog) {}

bool TestWebDialogDelegate::ShouldShowDialogTitle() const {}

bool TestWebDialogDelegate::ShouldCloseDialogOnEscape() const {}

}  // namespace test
}  // namespace ui