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

Unified Diff: chrome/browser/ui/cocoa/profiles/avatar_base_controller.h

Issue 2174973002: [Mac][MD User Menu] Revamped signin/sync error surfacing UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
diff --git a/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h b/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
index 115cb2f43c869c64fd9f8bdeaec86d958743db18..455175e8c7ac07e9b5727c1833508bc25b185da5 100644
--- a/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
+++ b/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
@@ -17,6 +17,7 @@
@class BaseBubbleController;
class Browser;
class ProfileAttributesUpdateObserver;
+class SyncErrorObserver;
// This view controller manages the button that sits in the top of the
// window frame when using multi-profiles, and shows information about the
@@ -34,6 +35,11 @@ class ProfileAttributesUpdateObserver;
// Observer that listens for updates to the ProfileAttributesStorage.
std::unique_ptr<ProfileAttributesUpdateObserver> profileAttributesObserver_;
+ // Observer that listens for updates to the SyncErrorController.
groby-ooo-7-16 2016/07/22 23:53:15 Tiny style nit: Empty line above?
Jane 2016/08/03 19:57:57 Done.
+ std::unique_ptr<SyncErrorObserver> syncErrorObserver_;
+
+ BOOL hasAuthError_;
+ BOOL hasSyncError_;
}
// The avatar button view.

Powered by Google App Engine
This is Rietveld 408576698