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

Side by Side Diff: chrome/browser/ui/views/frame/browser_non_client_frame_view_ash.h

Issue 271913002: Animate window control changes in TouchView (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_
7 7
8 #include "ash/shell_observer.h" 8 #include "ash/shell_observer.h"
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual gfx::Size GetMinimumSize() OVERRIDE; 61 virtual gfx::Size GetMinimumSize() OVERRIDE;
62 62
63 // ash::ShellObserver: 63 // ash::ShellObserver:
64 virtual void OnMaximizeModeStarted() OVERRIDE; 64 virtual void OnMaximizeModeStarted() OVERRIDE;
65 virtual void OnMaximizeModeEnded() OVERRIDE; 65 virtual void OnMaximizeModeEnded() OVERRIDE;
66 66
67 // Overridden from chrome::TabIconViewModel: 67 // Overridden from chrome::TabIconViewModel:
68 virtual bool ShouldTabIconViewAnimate() const OVERRIDE; 68 virtual bool ShouldTabIconViewAnimate() const OVERRIDE;
69 virtual gfx::ImageSkia GetFaviconForTabIconView() OVERRIDE; 69 virtual gfx::ImageSkia GetFaviconForTabIconView() OVERRIDE;
70 70
71 protected:
72 // views::View:
flackr 2014/05/08 19:02:21 nit: For consistency, update other comments.
jonross 2014/05/08 21:15:40 Done.
73 virtual void ChildPreferredSizeChanged(views::View* child) OVERRIDE;
74
71 private: 75 private:
72 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest, WindowHeader); 76 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest, WindowHeader);
73 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest, 77 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest,
74 NonImmersiveFullscreen); 78 NonImmersiveFullscreen);
75 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest, 79 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest,
76 ImmersiveFullscreen); 80 ImmersiveFullscreen);
77 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest, 81 FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest,
78 ToggleMaximizeModeRelayout); 82 ToggleMaximizeModeRelayout);
79 83
80 // Distance between the left edge of the NonClientFrameView and the tab strip. 84 // Distance between the left edge of the NonClientFrameView and the tab strip.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 scoped_ptr<ash::HeaderPainter> header_painter_; 125 scoped_ptr<ash::HeaderPainter> header_painter_;
122 126
123 // Updates the hittest bounds overrides based on the window show type. 127 // Updates the hittest bounds overrides based on the window show type.
124 scoped_ptr<ash::FrameBorderHitTestController> 128 scoped_ptr<ash::FrameBorderHitTestController>
125 frame_border_hit_test_controller_; 129 frame_border_hit_test_controller_;
126 130
127 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); 131 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh);
128 }; 132 };
129 133
130 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ 134 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698