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

Side by Side Diff: chrome/browser/ui/views/harmony/layout_delegate.h

Issue 2625083003: Implement Harmony-style consistent button widths for Collected Cookies. (Closed)
Patch Set: respond to comments Created 3 years, 9 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 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_HARMONY_LAYOUT_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_
6 #define CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_
7 7
8 #include "ui/views/layout/grid_layout.h" 8 #include "ui/views/layout/grid_layout.h"
9 9
10 class LayoutDelegate { 10 class LayoutDelegate {
11 public: 11 public:
12 enum class Metric { 12 enum class Metric {
13 // Padding on the left and right side of a button's label. 13 // Padding on the left and right side of a button's label.
14 BUTTON_HORIZONTAL_PADDING, 14 BUTTON_HORIZONTAL_PADDING,
15 // The maximum width a button can have and still influence the sizes of
16 // other linked buttons. This allows short buttons to have linked widths
17 // without long buttons making things overly wide.
18 BUTTON_MAX_LINKABLE_WIDTH,
15 // Default minimum width of a button. 19 // Default minimum width of a button.
16 BUTTON_MINIMUM_WIDTH, 20 BUTTON_MINIMUM_WIDTH,
17 // Margin between the edge of a dialog and the left, right, or bottom of a 21 // Margin between the edge of a dialog and the left, right, or bottom of a
18 // contained button. 22 // contained button.
19 DIALOG_BUTTON_MARGIN, 23 DIALOG_BUTTON_MARGIN,
20 // Minimum width of a dialog button. 24 // Minimum width of a dialog button.
21 DIALOG_BUTTON_MINIMUM_WIDTH, 25 DIALOG_BUTTON_MINIMUM_WIDTH,
22 // Spacing between a dialog button and the content above it. 26 // Spacing between a dialog button and the content above it.
23 DIALOG_BUTTON_TOP_SPACING, 27 DIALOG_BUTTON_TOP_SPACING,
24 // Horizontal or vertical margin between the edge of a dialog and the close 28 // Horizontal or vertical margin between the edge of a dialog and the close
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 94
91 // Returns the preferred width in DIPs for a dialog of the specified |width|. 95 // Returns the preferred width in DIPs for a dialog of the specified |width|.
92 // May return 0 if the dialog has no preferred width. 96 // May return 0 if the dialog has no preferred width.
93 virtual int GetDialogPreferredWidth(DialogWidth width) const; 97 virtual int GetDialogPreferredWidth(DialogWidth width) const;
94 98
95 private: 99 private:
96 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate); 100 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate);
97 }; 101 };
98 102
99 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ 103 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/harmony/harmony_layout_delegate.cc ('k') | chrome/browser/ui/views/harmony/layout_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698