blob: ce7cfbbdb577cb64f041fe54ddb633c938533f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 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_BUBBLE_VIEW_BASE_H_
#define CHROME_BROWSER_UI_GLOBAL_ERROR_BUBBLE_VIEW_BASE_H_
#pragma once
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
class Browser;
class GlobalError;
class GlobalErrorBubbleViewBase {
public:
static GlobalErrorBubbleViewBase* ShowBubbleView(
Browser* browser,
const base::WeakPtr<GlobalError>& error);
virtual ~GlobalErrorBubbleViewBase() {}
// Close the bubble view.
virtual void CloseBubbleView() = 0;
};
#endif // CHROME_BROWSER_UI_GLOBAL_ERROR_BUBBLE_VIEW_BASE_H_
|