| Index: chrome/browser/ui/views/profiles/profile_chooser_view.h
|
| diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view.h b/chrome/browser/ui/views/profiles/profile_chooser_view.h
|
| index 3d41e57af49bba6f2019ab445b6c826d7cb4087a..5ba9f45c66a5c2809cb71a04555218df0b196484 100644
|
| --- a/chrome/browser/ui/views/profiles/profile_chooser_view.h
|
| +++ b/chrome/browser/ui/views/profiles/profile_chooser_view.h
|
| @@ -23,10 +23,6 @@
|
| #include "ui/views/controls/button/button.h"
|
| #include "ui/views/controls/link_listener.h"
|
| #include "ui/views/controls/styled_label_listener.h"
|
| -#include "ui/views/controls/textfield/textfield_controller.h"
|
| -
|
| -class EditableProfilePhoto;
|
| -class EditableProfileName;
|
|
|
| namespace views {
|
| class GridLayout;
|
| @@ -44,7 +40,6 @@ class ProfileChooserView : public content::WebContentsDelegate,
|
| public views::ButtonListener,
|
| public views::LinkListener,
|
| public views::StyledLabelListener,
|
| - public views::TextfieldController,
|
| public AvatarMenuObserver,
|
| public OAuth2TokenService::Observer {
|
| public:
|
| @@ -103,10 +98,6 @@ class ProfileChooserView : public content::WebContentsDelegate,
|
| const gfx::Range& range,
|
| int event_flags) override;
|
|
|
| - // views::TextfieldController:
|
| - bool HandleKeyEvent(views::Textfield* sender,
|
| - const ui::KeyEvent& key_event) override;
|
| -
|
| // AvatarMenuObserver:
|
| void OnAvatarMenuChanged(AvatarMenu* avatar_menu) override;
|
|
|
| @@ -150,9 +141,6 @@ class ProfileChooserView : public content::WebContentsDelegate,
|
| views::View* CreateCurrentProfileView(
|
| const AvatarMenu::Item& avatar_item,
|
| bool is_guest);
|
| - views::View* CreateMaterialDesignCurrentProfileView(
|
| - const AvatarMenu::Item& avatar_item,
|
| - bool is_guest);
|
| views::View* CreateGuestProfileView();
|
| views::View* CreateOtherProfilesView(const Indexes& avatars_to_show);
|
| views::View* CreateOptionsView(bool display_lock, AvatarMenu* avatar_menu);
|
| @@ -256,10 +244,6 @@ class ProfileChooserView : public content::WebContentsDelegate,
|
| views::LabelButton* signin_current_profile_button_;
|
| views::LabelButton* auth_error_email_button_;
|
|
|
| - // The profile name and photo in the active profile card in non-material-
|
| - // design user menu. Owned by the views hierarchy.
|
| - EditableProfilePhoto* current_profile_photo_;
|
| - EditableProfileName* current_profile_name_;
|
| // For material design user menu, the active profile card owns the profile
|
| // name and photo.
|
| views::LabelButton* current_profile_card_;
|
|
|