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

Unified Diff: content/browser/devtools/devtools_protocol.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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: content/browser/devtools/devtools_protocol.h
diff --git a/content/browser/devtools/devtools_protocol.h b/content/browser/devtools/devtools_protocol.h
index 67eb9797435d6af80a02e89a2c770d15a961b0f0..512bfb7bb279ba91d32cae1751920bf1bd891026 100644
--- a/content/browser/devtools/devtools_protocol.h
+++ b/content/browser/devtools/devtools_protocol.h
@@ -50,7 +50,7 @@ class DevToolsProtocol {
public:
int id() { return id_; }
- virtual std::string Serialize() override;
+ std::string Serialize() override;
// Creates success response. Takes ownership of |result|.
scoped_refptr<Response> SuccessResponse(base::DictionaryValue* result);
@@ -71,7 +71,7 @@ class DevToolsProtocol {
scoped_refptr<Response> AsyncResponsePromise();
protected:
- virtual ~Command();
+ ~Command() override;
private:
friend class DevToolsProtocol;
@@ -109,12 +109,11 @@ class DevToolsProtocol {
class Notification : public Message {
public:
-
- virtual std::string Serialize() override;
+ std::string Serialize() override;
private:
friend class DevToolsProtocol;
- virtual ~Notification();
+ ~Notification() override;
// Takes ownership of |params|.
Notification(const std::string& method,
« no previous file with comments | « content/browser/devtools/devtools_netlog_observer.h ('k') | content/browser/devtools/devtools_system_info_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698