Index: chrome/browser/ui/global_error_bubble_view.h |
diff --git a/chrome/browser/ui/global_error_bubble_view.h b/chrome/browser/ui/global_error_bubble_view.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2f8d4bf6703d2a468c7fd0be821e28493ef2cf24 |
--- /dev/null |
+++ b/chrome/browser/ui/global_error_bubble_view.h |
@@ -0,0 +1,21 @@ |
+// Copyright (c) 2011 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_H_ |
+#define CHROME_BROWSER_UI_GLOBAL_ERROR_BUBBLE_VIEW_H_ |
+#pragma once |
+ |
+#include "base/basictypes.h" |
+ |
+class Browser; |
+class GlobalErrorDelegate; |
+ |
+class GlobalErrorBubbleView { |
+ public: |
+ static void Show(GlobalErrorDelegate* delegate, |
+ Browser* browser, |
+ const gfx::Rect& position_relative_to); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_GLOBAL_ERROR_BUBBLE_VIEW_H_ |