diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 12:48:44 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 12:48:44 +0000 |
commit | 5a05528be0f07d8a169897e27dbef996f9e13f65 (patch) | |
tree | f732cdc208d5c8cb994c614199dc27031194343f /ash/frame/custom_frame_view_ash.h | |
parent | 18c83cc15087788e314580d2fd20aff907ba1589 (diff) | |
download | chromium_src-5a05528be0f07d8a169897e27dbef996f9e13f65.zip chromium_src-5a05528be0f07d8a169897e27dbef996f9e13f65.tar.gz chromium_src-5a05528be0f07d8a169897e27dbef996f9e13f65.tar.bz2 |
Show avatar icon on V2 app's frame
BUG=305071
TEST=CustomFrameViewAsh.AvatarIcon + manual test.
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/200483004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258550 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/frame/custom_frame_view_ash.h')
-rw-r--r-- | ash/frame/custom_frame_view_ash.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ash/frame/custom_frame_view_ash.h b/ash/frame/custom_frame_view_ash.h index 6fd9bdf..bfa6729 100644 --- a/ash/frame/custom_frame_view_ash.h +++ b/ash/frame/custom_frame_view_ash.h @@ -58,10 +58,14 @@ class ASH_EXPORT CustomFrameViewAsh : public views::NonClientFrameView { virtual gfx::Size GetMaximumSize() OVERRIDE; virtual void SchedulePaintInRect(const gfx::Rect& r) OVERRIDE; virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; + virtual void VisibilityChanged(views::View* starting_from, + bool is_visible) OVERRIDE; // Get the view of the header. views::View* GetHeaderView(); + const views::View* GetAvatarIconViewForTest() const; + private: class OverlayView; friend class TestWidgetConstraintsDelegate; |