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

Unified Diff: chrome/browser/ui/autofill/test_popup_controller_common.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_popup_controller_common.h
diff --git a/chrome/browser/ui/autofill/test_popup_controller_common.h b/chrome/browser/ui/autofill/test_popup_controller_common.h
index 4102cf89d50a2e522990400eef43eb48c4c8b510..2bd298226e5db60adc1674e467c89cdd4e6bbe24 100644
--- a/chrome/browser/ui/autofill/test_popup_controller_common.h
+++ b/chrome/browser/ui/autofill/test_popup_controller_common.h
@@ -14,14 +14,13 @@ namespace autofill {
class TestPopupControllerCommon : public PopupControllerCommon {
public:
explicit TestPopupControllerCommon(const gfx::RectF& element_bounds);
- virtual ~TestPopupControllerCommon();
+ ~TestPopupControllerCommon() override;
void set_display(const gfx::Display& display) { display_ = display; }
protected:
// Returns |display_|
- virtual gfx::Display GetDisplayNearestPoint(
- const gfx::Point& point) const override;
+ gfx::Display GetDisplayNearestPoint(const gfx::Point& point) const override;
private:
gfx::Display display_;

Powered by Google App Engine
This is Rietveld 408576698