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

Unified Diff: chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc

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/chromedriver/chrome/navigation_tracker.h ('k') | chrome/test/chromedriver/chrome/stub_chrome.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc
diff --git a/chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc b/chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc
index ae35e2578685c794783de36e07c32858a0cca012..bc013deb09227dc3c583576ec6de1298362ad695 100644
--- a/chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc
+++ b/chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc
@@ -259,9 +259,9 @@ class FailToEvalScriptDevToolsClient : public StubDevToolsClient {
public:
FailToEvalScriptDevToolsClient() : is_dom_getDocument_requested_(false) {}
- virtual ~FailToEvalScriptDevToolsClient() {}
+ ~FailToEvalScriptDevToolsClient() override {}
- virtual Status SendCommandAndGetResult(
+ Status SendCommandAndGetResult(
const std::string& method,
const base::DictionaryValue& params,
scoped_ptr<base::DictionaryValue>* result) override {
@@ -305,9 +305,9 @@ class DeterminingLoadStateDevToolsClient : public StubDevToolsClient {
send_event_first_(send_event_first),
send_event_first_params_(send_event_first_params) {}
- virtual ~DeterminingLoadStateDevToolsClient() {}
+ ~DeterminingLoadStateDevToolsClient() override {}
- virtual Status SendCommandAndGetResult(
+ Status SendCommandAndGetResult(
const std::string& method,
const base::DictionaryValue& params,
scoped_ptr<base::DictionaryValue>* result) override {
« no previous file with comments | « chrome/test/chromedriver/chrome/navigation_tracker.h ('k') | chrome/test/chromedriver/chrome/stub_chrome.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698