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

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

Issue 2868293002: Rename new_avatar_button.* to avatar_button in preparation for CL 2851543002 (Closed)
Patch Set: 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/new_avatar_button.h
diff --git a/chrome/browser/ui/views/profiles/new_avatar_button.h b/chrome/browser/ui/views/profiles/new_avatar_button.h
deleted file mode 100644
index 5cbcb617359b115af693793aa9c098f77ebba766..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/profiles/new_avatar_button.h
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright 2014 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_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_
-#define CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_
-
-#include "base/macros.h"
-#include "chrome/browser/profiles/profile_attributes_storage.h"
-#include "chrome/browser/ui/avatar_button_error_controller.h"
-#include "chrome/browser/ui/avatar_button_error_controller_delegate.h"
-#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 {
- 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;
-
- // Views
- void OnGestureEvent(ui::GestureEvent* event) override;
-
- private:
- friend class ProfileChooserViewExtensionsTest;
-
- // AvatarButtonErrorControllerDelegate:
- void OnAvatarErrorChanged() override;
-
- // ProfileAttributesStorage::Observer:
- void OnProfileAdded(const base::FilePath& profile_path) override;
- void OnProfileWasRemoved(const base::FilePath& profile_path,
- const base::string16& profile_name) override;
- void OnProfileNameChanged(const base::FilePath& profile_path,
- const base::string16& old_profile_name) override;
- void OnProfileSupervisedUserIdChanged(
- const base::FilePath& profile_path) override;
-
- // 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();
-
- 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_;
-
- // 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);
-};
-
-#endif // CHROME_BROWSER_UI_VIEWS_PROFILES_NEW_AVATAR_BUTTON_H_
« no previous file with comments | « chrome/browser/ui/views/profiles/avatar_button.cc ('k') | chrome/browser/ui/views/profiles/new_avatar_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698