| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_INDICATOR_ICON_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_INDICATOR_ICON_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_INDICATOR_ICON_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_INDICATOR_ICON_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "ui/gfx/image/image.h" | 12 #include "ui/gfx/image/image.h" |
| 13 #include "ui/views/view.h" | 13 #include "ui/views/view.h" |
| 14 | 14 |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Canvas; | 16 class Canvas; |
| 17 } | 17 } |
| 18 class BrowserNonClientFrameView; | |
| 19 class BrowserView; | |
| 20 class Profile; | |
| 21 | 18 |
| 22 // ProfileIndicatorIcon | 19 // ProfileIndicatorIcon |
| 23 // | 20 // |
| 24 // A view used to show either the incognito avatar, or in the case of CrOS multi | 21 // A view used to show either the incognito avatar, or in the case of CrOS multi |
| 25 // profile mode with teleported windows, a profile avatar. The icon set via | 22 // profile mode with teleported windows, a profile avatar. The icon set via |
| 26 // SetIcon() will be resized and drawn inside a circle if it's too big to fit in | 23 // SetIcon() will be resized and drawn inside a circle if it's too big to fit in |
| 27 // the frame. | 24 // the frame. |
| 28 class ProfileIndicatorIcon : public views::View { | 25 class ProfileIndicatorIcon : public views::View { |
| 29 public: | 26 public: |
| 30 ProfileIndicatorIcon(); | 27 ProfileIndicatorIcon(); |
| 31 ~ProfileIndicatorIcon() override; | 28 ~ProfileIndicatorIcon() override; |
| 32 | 29 |
| 33 // views::MenuButton: | 30 // views::MenuButton: |
| 34 void OnPaint(gfx::Canvas* canvas) override; | 31 void OnPaint(gfx::Canvas* canvas) override; |
| 35 | 32 |
| 36 // Sets the image for the avatar button. Rectangular images, as opposed | 33 // Sets the image for the avatar button. Rectangular images, as opposed |
| 37 // to Chrome avatar icons, will be resized and modified for the title bar. | 34 // to Chrome avatar icons, will be resized and modified for the title bar. |
| 38 void SetIcon(const gfx::Image& icon); | 35 void SetIcon(const gfx::Image& icon); |
| 39 | 36 |
| 40 private: | 37 private: |
| 41 gfx::Image base_icon_; | 38 gfx::Image base_icon_; |
| 42 gfx::ImageSkia modified_icon_; | 39 gfx::ImageSkia modified_icon_; |
| 43 int old_height_; | 40 int old_height_; |
| 44 DISALLOW_COPY_AND_ASSIGN(ProfileIndicatorIcon); | 41 DISALLOW_COPY_AND_ASSIGN(ProfileIndicatorIcon); |
| 45 }; | 42 }; |
| 46 | 43 |
| 47 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_INDICATOR_ICON_H_ | 44 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_INDICATOR_ICON_H_ |
| OLD | NEW |