chromium/chrome/browser/ui/global_error/global_error.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 "chrome/browser/ui/global_error/global_error.h"

#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/ui/global_error/global_error_bubble_view_base.h"

// GlobalError ---------------------------------------------------------------

GlobalError::GlobalError() {}

GlobalError::~GlobalError() {}

GlobalError::Severity GlobalError::GetSeverity() {}

ui::ImageModel GlobalError::MenuItemIcon() {}

// GlobalErrorWithStandardBubble ---------------------------------------------

GlobalErrorWithStandardBubble::GlobalErrorWithStandardBubble() = default;

GlobalErrorWithStandardBubble::~GlobalErrorWithStandardBubble() = default;

bool GlobalErrorWithStandardBubble::HasBubbleView() {}

bool GlobalErrorWithStandardBubble::HasShownBubbleView() {}

void GlobalErrorWithStandardBubble::ShowBubbleView(Browser* browser) {}

GlobalErrorBubbleViewBase* GlobalErrorWithStandardBubble::GetBubbleView() {}

bool GlobalErrorWithStandardBubble::ShouldCloseOnDeactivate() const {}

bool GlobalErrorWithStandardBubble::ShouldShowCloseButton() const {}

std::u16string
GlobalErrorWithStandardBubble::GetBubbleViewDetailsButtonLabel() {}

void GlobalErrorWithStandardBubble::BubbleViewDetailsButtonPressed(
    Browser* browser) {}

bool GlobalErrorWithStandardBubble::ShouldAddElevationIconToAcceptButton() {}

void GlobalErrorWithStandardBubble::BubbleViewDidClose(Browser* browser) {}