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

Unified Diff: chrome/test/base/find_in_page_observer.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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 | « chrome/test/base/chrome_unit_test_suite.h ('k') | chrome/test/base/history_index_restore_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/find_in_page_observer.h
diff --git a/chrome/test/base/find_in_page_observer.h b/chrome/test/base/find_in_page_observer.h
index 82e00f9604964fc957dd3df1b6088ca15522ac48..53fdb2b5efd84a94eea544d21c22c76a6f705a8c 100644
--- a/chrome/test/base/find_in_page_observer.h
+++ b/chrome/test/base/find_in_page_observer.h
@@ -28,7 +28,7 @@ namespace ui_test_utils {
class FindInPageNotificationObserver : public content::NotificationObserver {
public:
explicit FindInPageNotificationObserver(content::WebContents* parent_tab);
- virtual ~FindInPageNotificationObserver();
+ ~FindInPageNotificationObserver() override;
void Wait();
@@ -37,9 +37,9 @@ class FindInPageNotificationObserver : public content::NotificationObserver {
gfx::Rect selection_rect() const { return selection_rect_; }
private:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
content::NotificationRegistrar registrar_;
// We will at some point (before final update) be notified of the ordinal and
« no previous file with comments | « chrome/test/base/chrome_unit_test_suite.h ('k') | chrome/test/base/history_index_restore_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698