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

Unified Diff: content/public/test/javascript_test_observer.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 | « content/public/test/frame_load_waiter.h ('k') | content/public/test/mock_blob_url_request_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/javascript_test_observer.h
diff --git a/content/public/test/javascript_test_observer.h b/content/public/test/javascript_test_observer.h
index c86fda834172e40ab2455af70cbada3daedd12ae..979d920ff61b418f0c41f5166ada7db55c51f1eb 100644
--- a/content/public/test/javascript_test_observer.h
+++ b/content/public/test/javascript_test_observer.h
@@ -62,7 +62,7 @@ class JavascriptTestObserver : public NotificationObserver {
JavascriptTestObserver(WebContents* web_contents,
TestMessageHandler* handler);
- virtual ~JavascriptTestObserver();
+ ~JavascriptTestObserver() override;
// Pump the message loop until the message handler indicates the Javascript
// test is done running. Return true if the test jig functioned correctly and
@@ -73,10 +73,9 @@ class JavascriptTestObserver : public NotificationObserver {
// while Run() is pumping the message loop.
void Reset();
- virtual void Observe(
- int type,
- const NotificationSource& source,
- const NotificationDetails& details) override;
+ void Observe(int type,
+ const NotificationSource& source,
+ const NotificationDetails& details) override;
private:
// This message did not signal the end of a test, keep going.
« no previous file with comments | « content/public/test/frame_load_waiter.h ('k') | content/public/test/mock_blob_url_request_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698