chromium/chrome/browser/devtools/devtools_infobar_delegate.cc

// Copyright 2018 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/devtools/devtools_infobar_delegate.h"

#include "chrome/browser/devtools/global_confirm_info_bar.h"
#include "chrome/grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"

// static
void DevToolsInfoBarDelegate::Create(const std::u16string& message,
                                     Callback callback) {}

DevToolsInfoBarDelegate::DevToolsInfoBarDelegate(const std::u16string& message,
                                                 Callback callback)
    :{}

DevToolsInfoBarDelegate::~DevToolsInfoBarDelegate() {}

infobars::InfoBarDelegate::InfoBarIdentifier
DevToolsInfoBarDelegate::GetIdentifier() const {}

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

std::u16string DevToolsInfoBarDelegate::GetButtonLabel(
    InfoBarButton button) const {}

bool DevToolsInfoBarDelegate::Accept() {}

bool DevToolsInfoBarDelegate::Cancel() {}