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

Side by Side Diff: chrome/browser/ui/cocoa/autofill/autofill_dialog_constants.h

Issue 2703253007: Use (i) icon and the same tooltip for the credit cards dialog and account chooser on Mac. (Closed)
Patch Set: 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_COCOA_AUTOFILL_AUTOFILL_DIALOG_CONSTANTS_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_CONSTANTS_H_
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_CONSTANTS_H_ 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_CONSTANTS_H_
7 7
8 // Constants governing layout of autofill dialog. 8 // Constants governing layout of autofill dialog.
9 namespace autofill { 9 namespace autofill {
10 10
(...skipping 13 matching lines...) Expand all
24 // Padding between top bar and details section, as well as between the bottom of 24 // Padding between top bar and details section, as well as between the bottom of
25 // the details section and the button strip. 25 // the details section and the button strip.
26 const int kDetailVerticalPadding = 10; 26 const int kDetailVerticalPadding = 10;
27 27
28 // Fixed width for a single input field. 28 // Fixed width for a single input field.
29 const CGFloat kFieldWidth = 104; 29 const CGFloat kFieldWidth = 104;
30 30
31 // Horizontal padding between fields 31 // Horizontal padding between fields
32 const CGFloat kHorizontalFieldPadding = 8; 32 const CGFloat kHorizontalFieldPadding = 8;
33 33
34 // Size of the information icon in the footer.
35 const CGFloat kInfoIconSize = 16;
36
34 } // autofill 37 } // autofill
35 38
36 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_CONSTANTS_H_ 39 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698