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

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h

Issue 144073004: rAc: remove bold section labels on linux_aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ui::ResourceBundle::BoldOnlyIfItLooksGood() Created 6 years, 11 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 | Annotate | Revision Log
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_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 virtual int GetDialogButtons() const OVERRIDE; 118 virtual int GetDialogButtons() const OVERRIDE;
119 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; 119 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE;
120 virtual DialogOverlayState GetDialogOverlay() OVERRIDE; 120 virtual DialogOverlayState GetDialogOverlay() OVERRIDE;
121 virtual const std::vector<gfx::Range>& LegalDocumentLinks() OVERRIDE; 121 virtual const std::vector<gfx::Range>& LegalDocumentLinks() OVERRIDE;
122 virtual bool SectionIsActive(DialogSection section) const OVERRIDE; 122 virtual bool SectionIsActive(DialogSection section) const OVERRIDE;
123 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section) 123 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section)
124 const OVERRIDE; 124 const OVERRIDE;
125 virtual ui::ComboboxModel* ComboboxModelForAutofillType( 125 virtual ui::ComboboxModel* ComboboxModelForAutofillType(
126 ServerFieldType type) OVERRIDE; 126 ServerFieldType type) OVERRIDE;
127 virtual ui::MenuModel* MenuModelForSection(DialogSection section) OVERRIDE; 127 virtual ui::MenuModel* MenuModelForSection(DialogSection section) OVERRIDE;
128 virtual base::string16 LabelForSection(DialogSection section) const OVERRIDE; 128 virtual SectionLabel LabelForSection(DialogSection section) const OVERRIDE;
129 virtual SuggestionState SuggestionStateForSection( 129 virtual SuggestionState SuggestionStateForSection(
130 DialogSection section) OVERRIDE; 130 DialogSection section) OVERRIDE;
131 virtual FieldIconMap IconsForFields(const FieldValueMap& user_inputs) 131 virtual FieldIconMap IconsForFields(const FieldValueMap& user_inputs)
132 const OVERRIDE; 132 const OVERRIDE;
133 virtual bool FieldControlsIcons(ServerFieldType type) const OVERRIDE; 133 virtual bool FieldControlsIcons(ServerFieldType type) const OVERRIDE;
134 virtual base::string16 TooltipForField(ServerFieldType type) const OVERRIDE; 134 virtual base::string16 TooltipForField(ServerFieldType type) const OVERRIDE;
135 virtual bool InputIsEditable(const DetailInput& input, DialogSection section) 135 virtual bool InputIsEditable(const DetailInput& input, DialogSection section)
136 OVERRIDE; 136 OVERRIDE;
137 virtual base::string16 InputValidityMessage(DialogSection section, 137 virtual base::string16 InputValidityMessage(DialogSection section,
138 ServerFieldType type, 138 ServerFieldType type,
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 773
774 // A username string we display in the card scrambling/generated overlay. 774 // A username string we display in the card scrambling/generated overlay.
775 base::string16 submitted_cardholder_name_; 775 base::string16 submitted_cardholder_name_;
776 776
777 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); 777 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl);
778 }; 778 };
779 779
780 } // namespace autofill 780 } // namespace autofill
781 781
782 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ 782 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698