chromium/chrome/browser/infobars/infobar_observer.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/infobars/infobar_observer.h"

InfoBarObserver::InfoBarObserver(infobars::InfoBarManager* manager, Type type)
    :{}

InfoBarObserver::~InfoBarObserver() {}

void InfoBarObserver::Wait() {}

void InfoBarObserver::OnInfoBarAdded(infobars::InfoBar* infobar) {}
void InfoBarObserver::OnInfoBarRemoved(infobars::InfoBar* infobar,
                                       bool animate) {}
void InfoBarObserver::OnInfoBarReplaced(infobars::InfoBar* old_infobar,
                                        infobars::InfoBar* new_infobar) {}

void InfoBarObserver::OnManagerShuttingDown(infobars::InfoBarManager* manager) {}

void InfoBarObserver::OnNotified(Type type) {}