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

Unified Diff: chrome/test/remoting/waiter.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/remoting/remote_desktop_browsertest.h ('k') | chrome/utility/chrome_content_utility_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/remoting/waiter.h
diff --git a/chrome/test/remoting/waiter.h b/chrome/test/remoting/waiter.h
index 82fe9375093e02f8f3cb7055a7e993b1874f5e70..9201d77e70755a6c42e75647f0df174c85a2891f 100644
--- a/chrome/test/remoting/waiter.h
+++ b/chrome/test/remoting/waiter.h
@@ -49,13 +49,13 @@ class ConditionalTimeoutWaiter : public TimeoutWaiter {
ConditionalTimeoutWaiter(base::TimeDelta timeout,
base::TimeDelta interval,
const Predicate& callback);
- virtual ~ConditionalTimeoutWaiter();
+ ~ConditionalTimeoutWaiter() override;
// Returns true if |callback_| returned true and false in case of timeout.
- virtual bool Wait() override;
+ bool Wait() override;
protected:
- virtual void CancelWait() override;
+ void CancelWait() override;
private:
// Callback used to cancel the ConditionalTimeoutWaiter::Wait.
« no previous file with comments | « chrome/test/remoting/remote_desktop_browsertest.h ('k') | chrome/utility/chrome_content_utility_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698