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

Unified Diff: chrome/test/chromedriver/chrome/dom_tracker.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
Index: chrome/test/chromedriver/chrome/dom_tracker.h
diff --git a/chrome/test/chromedriver/chrome/dom_tracker.h b/chrome/test/chromedriver/chrome/dom_tracker.h
index d998bfbdccea7c195b18e87602567e51066b1d04..9311a5269fbc0f2f0435155e830ad4b80292434f 100644
--- a/chrome/test/chromedriver/chrome/dom_tracker.h
+++ b/chrome/test/chromedriver/chrome/dom_tracker.h
@@ -24,15 +24,15 @@ class Status;
class DomTracker : public DevToolsEventListener {
public:
explicit DomTracker(DevToolsClient* client);
- virtual ~DomTracker();
+ ~DomTracker() override;
Status GetFrameIdForNode(int node_id, std::string* frame_id);
// Overridden from DevToolsEventListener:
- virtual Status OnConnected(DevToolsClient* client) override;
- virtual Status OnEvent(DevToolsClient* client,
- const std::string& method,
- const base::DictionaryValue& params) override;
+ Status OnConnected(DevToolsClient* client) override;
+ Status OnEvent(DevToolsClient* client,
+ const std::string& method,
+ const base::DictionaryValue& params) override;
private:
bool ProcessNodeList(const base::Value* nodes);

Powered by Google App Engine
This is Rietveld 408576698