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

Unified Diff: chrome/browser/signin/signin_global_error.h

Issue 1299543002: Delete dead signin code (SigninGlobalError) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac? Created 5 years, 4 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/app_controller_mac_unittest.mm ('k') | chrome/browser/signin/signin_global_error.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/signin_global_error.h
diff --git a/chrome/browser/signin/signin_global_error.h b/chrome/browser/signin/signin_global_error.h
deleted file mode 100644
index 86846c80437885952ed3449185e4b724959ef9f3..0000000000000000000000000000000000000000
--- a/chrome/browser/signin/signin_global_error.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright (c) 2013 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_SIGNIN_SIGNIN_GLOBAL_ERROR_H_
-#define CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_
-
-#include <set>
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/gtest_prod_util.h"
-#include "chrome/browser/ui/global_error/global_error.h"
-#include "components/keyed_service/core/keyed_service.h"
-#include "components/signin/core/browser/signin_error_controller.h"
-
-class Profile;
-
-// Shows auth errors on the wrench menu using a bubble view and a menu item.
-class SigninGlobalError : public GlobalErrorWithStandardBubble,
- public SigninErrorController::Observer,
- public KeyedService {
- public:
- SigninGlobalError(SigninErrorController* error_controller,
- Profile* profile);
- ~SigninGlobalError() override;
-
- // Returns true if there is an authentication error.
- bool HasError();
-
- // Shows re-authentication UI to the user in an attempt to fix the error.
- // The re-authentication UI will be shown in |browser|.
- void AttemptToFixError(Browser* browser);
-
- private:
- FRIEND_TEST_ALL_PREFIXES(SigninGlobalErrorTest, NoErrorAuthStatusProviders);
- FRIEND_TEST_ALL_PREFIXES(SigninGlobalErrorTest, ErrorAuthStatusProvider);
- FRIEND_TEST_ALL_PREFIXES(SigninGlobalErrorTest, AuthStatusEnumerateAllErrors);
-
- // KeyedService:
- void Shutdown() override;
-
- // GlobalErrorWithStandardBubble:
- bool HasMenuItem() override;
- int MenuItemCommandID() override;
- base::string16 MenuItemLabel() override;
- void ExecuteMenuItem(Browser* browser) override;
- bool HasBubbleView() override;
- base::string16 GetBubbleViewTitle() override;
- std::vector<base::string16> GetBubbleViewMessages() override;
- base::string16 GetBubbleViewAcceptButtonLabel() override;
- base::string16 GetBubbleViewCancelButtonLabel() override;
- void OnBubbleViewDidClose(Browser* browser) override;
- void BubbleViewAcceptButtonPressed(Browser* browser) override;
- void BubbleViewCancelButtonPressed(Browser* browser) override;
-
- // SigninErrorController::Observer:
- void OnErrorChanged() override;
-
- // The Profile this service belongs to.
- Profile* profile_;
-
- // The SigninErrorController that provides auth status.
- SigninErrorController* error_controller_;
-
- // True if signin global error was added to the global error service.
- bool is_added_to_global_error_service_;
-
- DISALLOW_COPY_AND_ASSIGN(SigninGlobalError);
-};
-
-#endif // CHROME_BROWSER_SIGNIN_SIGNIN_GLOBAL_ERROR_H_
« no previous file with comments | « chrome/browser/app_controller_mac_unittest.mm ('k') | chrome/browser/signin/signin_global_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698