Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1063)

Unified Diff: chrome/browser/ui/global_error.cc

Issue 10700027: browser: Move global error to subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/global_error.h ('k') | chrome/browser/ui/global_error/global_error.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/global_error.cc
diff --git a/chrome/browser/ui/global_error.cc b/chrome/browser/ui/global_error.cc
deleted file mode 100644
index a282df735501e729aab424adfbed70bb4188dfae..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/global_error.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// 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.
-
-#include "chrome/browser/ui/global_error.h"
-
-#include "base/logging.h"
-#include "chrome/browser/ui/global_error_bubble_view_base.h"
-#include "grit/theme_resources.h"
-#include "grit/theme_resources_standard.h"
-
-GlobalError::GlobalError()
- : has_shown_bubble_view_(false),
- bubble_view_(NULL) {
-}
-
-GlobalError::~GlobalError() {
-}
-
-int GlobalError::GetBadgeResourceID() {
- return IDR_UPDATE_BADGE4;
-}
-
-int GlobalError::MenuItemIconResourceID() {
- return IDR_UPDATE_MENU4;
-}
-
-bool GlobalError::HasShownBubbleView() {
- return has_shown_bubble_view_;
-}
-
-void GlobalError::ShowBubbleView(Browser* browser) {
- has_shown_bubble_view_ = true;
- bubble_view_ =
- GlobalErrorBubbleViewBase::ShowBubbleView(browser, AsWeakPtr());
-}
-
-GlobalErrorBubbleViewBase* GlobalError::GetBubbleView() {
- return bubble_view_;
-}
-
-int GlobalError::GetBubbleViewIconResourceID() {
- return IDR_INPUT_ALERT;
-}
-
-void GlobalError::BubbleViewDidClose(Browser* browser) {
- DCHECK(browser);
- bubble_view_ = NULL;
- OnBubbleViewDidClose(browser);
-}
« no previous file with comments | « chrome/browser/ui/global_error.h ('k') | chrome/browser/ui/global_error/global_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698