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

Unified Diff: chrome/test/chromedriver/chrome/mobile_emulation_override_manager.h

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
Index: chrome/test/chromedriver/chrome/mobile_emulation_override_manager.h
diff --git a/chrome/test/chromedriver/chrome/mobile_emulation_override_manager.h b/chrome/test/chromedriver/chrome/mobile_emulation_override_manager.h
index 61a9560d8380361e456830d67e7f0b591c23bde2..d10d3fd0fa464f69cebbf480ad8e467c6964284c 100644
--- a/chrome/test/chromedriver/chrome/mobile_emulation_override_manager.h
+++ b/chrome/test/chromedriver/chrome/mobile_emulation_override_manager.h
@@ -31,10 +31,10 @@ class MobileEmulationOverrideManager : public DevToolsEventListener {
virtual ~MobileEmulationOverrideManager();
// Overridden from DevToolsEventListener:
- virtual Status OnConnected(DevToolsClient* client) OVERRIDE;
+ virtual Status OnConnected(DevToolsClient* client) override;
virtual Status OnEvent(DevToolsClient* client,
const std::string& method,
- const base::DictionaryValue& params) OVERRIDE;
+ const base::DictionaryValue& params) override;
private:
Status ApplyOverrideIfNeeded();

Powered by Google App Engine
This is Rietveld 408576698