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

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

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (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 2286ce24b3d364fc42b6e7dc3da37d6730ad49f8..ae35e2578685c794783de36e07c32858a0cca012 100644
--- a/chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc
+++ b/chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc
@@ -264,7 +264,7 @@ class FailToEvalScriptDevToolsClient : public StubDevToolsClient {
virtual Status SendCommandAndGetResult(
const std::string& method,
const base::DictionaryValue& params,
- scoped_ptr<base::DictionaryValue>* result) OVERRIDE {
+ scoped_ptr<base::DictionaryValue>* result) override {
if (!is_dom_getDocument_requested_ && method == "DOM.getDocument") {
is_dom_getDocument_requested_ = true;
base::DictionaryValue result_dict;
@@ -310,7 +310,7 @@ class DeterminingLoadStateDevToolsClient : public StubDevToolsClient {
virtual Status SendCommandAndGetResult(
const std::string& method,
const base::DictionaryValue& params,
- scoped_ptr<base::DictionaryValue>* result) OVERRIDE {
+ scoped_ptr<base::DictionaryValue>* result) override {
if (method == "DOM.getDocument") {
base::DictionaryValue result_dict;
if (has_empty_base_url_)
« 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