chromium/chrome/browser/ui/startup/automation_infobar_delegate.cc

// Copyright 2017 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/startup/automation_infobar_delegate.h"

#include <memory>
#include <utility>

#include "chrome/browser/devtools/global_confirm_info_bar.h"
#include "chrome/browser/infobars/confirm_infobar_creator.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/grit/generated_resources.h"
#include "components/infobars/core/infobar.h"
#include "ui/base/l10n/l10n_util.h"

// static
void AutomationInfoBarDelegate::Create() {}

// static
infobars::InfoBar* AutomationInfoBarDelegate::Create(
    infobars::ContentInfoBarManager* infobar_manager) {}

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

bool AutomationInfoBarDelegate::ShouldExpire(
    const NavigationDetails& details) const {}

bool AutomationInfoBarDelegate::ShouldAnimate() const {}

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

int AutomationInfoBarDelegate::GetButtons() const {}