blob: 224364d8d6262c5c86b7c18aec18cef1b7735af9 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_GLOBAL_ERROR_GLOBAL_ERROR_BUBBLE_VIEW_BASE_H_
#define CHROME_BROWSER_UI_GLOBAL_ERROR_GLOBAL_ERROR_BUBBLE_VIEW_BASE_H_
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
class Browser;
class GlobalErrorWithStandardBubble;
class GlobalErrorBubbleViewBase {
public:
static GlobalErrorBubbleViewBase* ShowStandardBubbleView(
Browser* browser,
const base::WeakPtr<GlobalErrorWithStandardBubble>& error);
virtual ~GlobalErrorBubbleViewBase() {}
// Close the bubble view.
virtual void CloseBubbleView() = 0;
};
#endif // CHROME_BROWSER_UI_GLOBAL_ERROR_GLOBAL_ERROR_BUBBLE_VIEW_BASE_H_