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

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

Issue 686543002: Standardize usage of virtual/override/final specifiers. (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
« no previous file with comments | « no previous file | chrome/browser/ui/views/autofill/autofill_dialog_views.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 53e1dba7ab2db33542dc9be52e20e205bfed5255..5bcca753f24942f4896d44f5d8e17368281efe38 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
@@ -15,22 +15,21 @@ class AutofillDialogViews;
class AutofillDialogViewTesterViews : public AutofillDialogViewTester {
public:
explicit AutofillDialogViewTesterViews(AutofillDialogViews* view);
- virtual ~AutofillDialogViewTesterViews();
+ ~AutofillDialogViewTesterViews() override;
// TestableAutofillDialogView implementation:
- 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;
- 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;
+ void SubmitForTesting() override;
+ void CancelForTesting() override;
+ base::string16 GetTextContentsOfInput(ServerFieldType type) override;
+ void SetTextContentsOfInput(ServerFieldType type,
+ const base::string16& contents) override;
+ void SetTextContentsOfSuggestionInput(DialogSection section,
+ const base::string16& text) override;
+ void ActivateInput(ServerFieldType type) override;
+ gfx::Size GetSize() const override;
+ content::WebContents* GetSignInWebContents() override;
+ bool IsShowingOverlay() const override;
+ bool IsShowingSection(DialogSection section) const override;
private:
AutofillDialogViews* view_;
« no previous file with comments | « no previous file | chrome/browser/ui/views/autofill/autofill_dialog_views.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698