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

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

Issue 1074343004: get rid of another inappropriate ToLowerASCII (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nodeleteallowed
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 Profile* profile() override; 162 Profile* profile() override;
163 content::WebContents* GetWebContents() override; 163 content::WebContents* GetWebContents() override;
164 164
165 // AutofillPopupDelegate implementation. 165 // AutofillPopupDelegate implementation.
166 void OnPopupShown() override; 166 void OnPopupShown() override;
167 void OnPopupHidden() override; 167 void OnPopupHidden() override;
168 void DidSelectSuggestion(const base::string16& value, 168 void DidSelectSuggestion(const base::string16& value,
169 int identifier) override; 169 int identifier) override;
170 void DidAcceptSuggestion(const base::string16& value, 170 void DidAcceptSuggestion(const base::string16& value,
171 int identifier) override; 171 int identifier) override;
172 void RemoveSuggestion(const base::string16& value, int identifier) override; 172 bool RemoveSuggestion(const base::string16& value, int identifier) override;
173 void ClearPreviewedForm() override; 173 void ClearPreviewedForm() override;
174 174
175 // content::NotificationObserver implementation. 175 // content::NotificationObserver implementation.
176 void Observe(int type, 176 void Observe(int type,
177 const content::NotificationSource& source, 177 const content::NotificationSource& source,
178 const content::NotificationDetails& details) override; 178 const content::NotificationDetails& details) override;
179 179
180 // SuggestionsMenuModelDelegate implementation. 180 // SuggestionsMenuModelDelegate implementation.
181 void SuggestionItemSelected(SuggestionsMenuModel* model, 181 void SuggestionItemSelected(SuggestionsMenuModel* model,
182 size_t index) override; 182 size_t index) override;
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 base::string16 submitted_cardholder_name_; 845 base::string16 submitted_cardholder_name_;
846 846
847 base::WeakPtrFactory<AutofillDialogControllerImpl> weak_ptr_factory_; 847 base::WeakPtrFactory<AutofillDialogControllerImpl> weak_ptr_factory_;
848 848
849 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); 849 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl);
850 }; 850 };
851 851
852 } // namespace autofill 852 } // namespace autofill
853 853
854 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ 854 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698