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

Unified Diff: chrome/browser/ui/views/autofill/autofill_dialog_view_tester_views.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/autofill/autofill_dialog_view_tester_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_view_tester_views.h b/chrome/browser/ui/views/autofill/autofill_dialog_view_tester_views.h
index b14c27c6bbf243d5c41249cf90e10f7056ee2cd7..53e1dba7ab2db33542dc9be52e20e205bfed5255 100644
--- a/chrome/browser/ui/views/autofill/autofill_dialog_view_tester_views.h
+++ b/chrome/browser/ui/views/autofill/autofill_dialog_view_tester_views.h
@@ -18,19 +18,19 @@ class AutofillDialogViewTesterViews : public AutofillDialogViewTester {
virtual ~AutofillDialogViewTesterViews();
// TestableAutofillDialogView implementation:
- virtual void SubmitForTesting() OVERRIDE;
- virtual void CancelForTesting() OVERRIDE;
- virtual base::string16 GetTextContentsOfInput(ServerFieldType type) OVERRIDE;
+ virtual void SubmitForTesting() override;
+ virtual void CancelForTesting() override;
+ virtual base::string16 GetTextContentsOfInput(ServerFieldType type) override;
virtual void SetTextContentsOfInput(ServerFieldType type,
- const base::string16& contents) OVERRIDE;
+ const base::string16& contents) override;
virtual void SetTextContentsOfSuggestionInput(
DialogSection section,
- const base::string16& text) OVERRIDE;
- virtual void ActivateInput(ServerFieldType type) OVERRIDE;
- virtual gfx::Size GetSize() const OVERRIDE;
- virtual content::WebContents* GetSignInWebContents() OVERRIDE;
- virtual bool IsShowingOverlay() const OVERRIDE;
- virtual bool IsShowingSection(DialogSection section) const OVERRIDE;
+ const base::string16& text) override;
+ virtual void ActivateInput(ServerFieldType type) override;
+ virtual gfx::Size GetSize() const override;
+ virtual content::WebContents* GetSignInWebContents() override;
+ virtual bool IsShowingOverlay() const override;
+ virtual bool IsShowingSection(DialogSection section) const override;
private:
AutofillDialogViews* view_;

Powered by Google App Engine
This is Rietveld 408576698