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

Unified Diff: chrome/browser/ui/views/profiles/avatar_button.h

Issue 2851543002: Update avatar button to MD (part 1) (Closed)
Patch Set: Merged ThemedAvatarButton and Win10NativeAvatarButton into the base AvatarButton class Created 3 years, 7 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/views/profiles/avatar_button.h
diff --git a/chrome/browser/ui/views/profiles/new_avatar_button.h b/chrome/browser/ui/views/profiles/avatar_button.h
similarity index 59%
rename from chrome/browser/ui/views/profiles/new_avatar_button.h
rename to chrome/browser/ui/views/profiles/avatar_button.h
index 5cbcb617359b115af693793aa9c098f77ebba766..35ddeb25de7d239f8f5720f54a30988d8f3be074 100644
--- a/chrome/browser/ui/views/profiles/new_avatar_button.h
+++ b/chrome/browser/ui/views/profiles/avatar_button.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_
-#define CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_
+#ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_BUTTON_H_
+#define CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_BUTTON_H_
#include "base/macros.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
@@ -12,26 +12,30 @@
#include "chrome/browser/ui/views/profiles/avatar_button_style.h"
#include "ui/views/controls/button/label_button.h"
-class AvatarButtonDelegate;
class Profile;
-// Avatar button that displays the active profile's name in the caption area.
-class NewAvatarButton : public views::LabelButton,
- public AvatarButtonErrorControllerDelegate,
- public ProfileAttributesStorage::Observer {
+// Base class for avatar buttons that display the active profile's name in the
Peter Kasting 2017/05/06 02:23:09 Nit: If these buttons are primarily about profile
emx 2017/05/09 16:26:52 I don't know the answer to that, but the strings "
Peter Kasting 2017/05/09 17:40:29 That's fair. Consider whether it makes sense as a
+// caption area.
+class AvatarButton : public views::LabelButton,
+ public AvatarButtonErrorControllerDelegate,
+ public ProfileAttributesStorage::Observer {
public:
- NewAvatarButton(AvatarButtonDelegate* delegate,
- AvatarButtonStyle button_style,
- Profile* profile);
- ~NewAvatarButton() override;
-
- // Views::LabelButton
- bool OnMousePressed(const ui::MouseEvent& event) override;
- void OnMouseReleased(const ui::MouseEvent& event) override;
+ AvatarButton(views::ButtonListener* listener,
+ AvatarButtonStyle button_style,
+ Profile* profile);
+ ~AvatarButton() override;
// Views
Peter Kasting 2017/05/06 02:23:09 Nit: While here: Fix this to say "views::LabelButt
emx 2017/05/09 16:26:52 Done.
void OnGestureEvent(ui::GestureEvent* event) override;
+ protected:
Peter Kasting 2017/05/06 02:23:09 Nit: Make all these public that were public in the
emx 2017/05/09 16:26:53 Done.
+ // View:
Peter Kasting 2017/05/06 02:23:09 Nit: You don't subclass View directly. Name this
emx 2017/05/09 16:26:52 Done.
+ gfx::Size GetMinimumSize() const override;
+ gfx::Size GetPreferredSize() const override;
+ std::unique_ptr<views::InkDropHighlight> CreateInkDropHighlight()
+ const override;
+ bool ShouldUseFloodFillInkDrop() const override;
+
private:
friend class ProfileChooserViewExtensionsTest;
@@ -50,21 +54,20 @@ class NewAvatarButton : public views::LabelButton,
// Called when the profile info cache or signin/sync error has changed, which
// means we might have to update the icon/text of the button.
void Update();
+ void UpdateButton(bool use_generic_button);
Peter Kasting 2017/05/06 02:23:09 Nit: Function needs a comment, including an explan
emx 2017/05/09 16:26:52 I've inlined the function instead. It was only cal
+
+ // Sets generic_avatar_ to the image with the specified IDR.
+ void SetButtonAvatar(int avatar_idr);
- AvatarButtonDelegate* delegate_;
AvatarButtonErrorController error_controller_;
Profile* profile_;
// The icon displayed instead of the profile name in the local profile case.
// Different assets are used depending on the OS version.
gfx::ImageSkia generic_avatar_;
+ bool use_win10_native_button_;
Peter Kasting 2017/05/06 02:23:09 Nit: Should be separated from the variable above b
emx 2017/05/09 16:26:53 Done.
- // This is used to check if the bubble was showing during the mouse pressed
- // event. If this is true then the mouse released event is ignored to prevent
- // the bubble from reshowing.
- bool suppress_mouse_released_action_;
-
- DISALLOW_COPY_AND_ASSIGN(NewAvatarButton);
+ DISALLOW_COPY_AND_ASSIGN(AvatarButton);
};
-#endif // CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_
+#endif // CHROME_BROWSER_UI_VIEWS_PROFILES_AVATAR_BUTTON_H_

Powered by Google App Engine
This is Rietveld 408576698