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

Side by Side Diff: ash/common/system/tray/fixed_sized_scroll_view.h

Issue 2671063002: Remove FixedSizedScrollView. (Closed)
Patch Set: rebase Created 3 years, 10 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
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_COMMON_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_
6 #define ASH_COMMON_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_
7
8 #include "base/macros.h"
9 #include "ui/views/controls/scroll_view.h"
10
11 namespace ash {
12
13 // A custom scroll-view that has a specified dimension.
14 // TODO(estade): can we get rid of this class? In MD, it hardly differs in
15 // behavior from ScrollView.
16 class FixedSizedScrollView : public views::ScrollView {
17 public:
18 FixedSizedScrollView();
19 ~FixedSizedScrollView() override;
20
21 void SetContentsView(views::View* view);
22
23 // Change the fixed size of the view. Invalidates the layout (by calling
24 // PreferredSizeChanged()).
25 void SetFixedSize(const gfx::Size& size);
26
27 void set_fixed_size(const gfx::Size& size);
28
29 // Overridden from views::View:
30 gfx::Size GetPreferredSize() const override;
31 void Layout() override;
32
33 protected:
34 // Overridden from views::View:
35 void OnBoundsChanged(const gfx::Rect& previous_bounds) override;
36
37 private:
38 gfx::Size fixed_size_;
39
40 DISALLOW_COPY_AND_ASSIGN(FixedSizedScrollView);
41 };
42
43 } // namespace ash
44
45 #endif // ASH_COMMON_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_
OLDNEW
« no previous file with comments | « ash/common/system/chromeos/network/tray_sms.cc ('k') | ash/common/system/tray/fixed_sized_scroll_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698