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

Unified Diff: chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/autofill/test_generated_credit_card_bubble_controller.h
diff --git a/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h b/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h
index 3f3af79be238fc5960665746e33c825e7e4c3b52..16358bb4841fd56f29a294f94e3e36b6900e7b91 100644
--- a/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h
+++ b/chrome/browser/ui/autofill/test_generated_credit_card_bubble_controller.h
@@ -18,7 +18,7 @@ class TestGeneratedCreditCardBubbleController
public:
explicit TestGeneratedCreditCardBubbleController(
content::WebContents* contents);
- virtual ~TestGeneratedCreditCardBubbleController();
+ ~TestGeneratedCreditCardBubbleController() override;
// Whether this controller is installed on |web_contents()|.
bool IsInstalled() const;
@@ -34,10 +34,10 @@ class TestGeneratedCreditCardBubbleController
protected:
// GeneratedCreditCardBubbleController:
- virtual base::WeakPtr<GeneratedCreditCardBubbleView> CreateBubble() override;
- virtual bool CanShow() const override;
- virtual void SetupAndShow(const base::string16& fronting_card_name,
- const base::string16& backing_card_name) override;
+ base::WeakPtr<GeneratedCreditCardBubbleView> CreateBubble() override;
+ bool CanShow() const override;
+ void SetupAndShow(const base::string16& fronting_card_name,
+ const base::string16& backing_card_name) override;
private:
// How many bubbles have been shown via this controller.

Powered by Google App Engine
This is Rietveld 408576698