Index: extensions/test/result_catcher.h |
diff --git a/extensions/test/result_catcher.h b/extensions/test/result_catcher.h |
index f0407fe1e4cfa1d309bdd69b273c651b88f8f034..71d0fdfa93255a340776129c5a1c9b7aed0782b8 100644 |
--- a/extensions/test/result_catcher.h |
+++ b/extensions/test/result_catcher.h |
@@ -26,7 +26,7 @@ namespace extensions { |
class ResultCatcher : public content::NotificationObserver { |
public: |
ResultCatcher(); |
- virtual ~ResultCatcher(); |
+ ~ResultCatcher() override; |
// Pumps the UI loop until a notification is received that an API test |
// succeeded or failed. Returns true if the test succeeded, false otherwise. |
@@ -40,9 +40,9 @@ class ResultCatcher : public content::NotificationObserver { |
private: |
// content::NotificationObserver: |
- 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_; |