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

Unified Diff: chrome/browser/devtools/devtools_target_impl.h

Issue 669873002: Standardize usage of virtual/override/final in chrome/browser/devtools/ (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/browser/devtools/devtools_target_impl.h
diff --git a/chrome/browser/devtools/devtools_target_impl.h b/chrome/browser/devtools/devtools_target_impl.h
index 3ce031ba725a5406de27efcfa14e610fadaf8e8b..4a4a5614954d99ba659906b10472d9776ceaecb6 100644
--- a/chrome/browser/devtools/devtools_target_impl.h
+++ b/chrome/browser/devtools/devtools_target_impl.h
@@ -32,22 +32,21 @@ class DevToolsTargetImpl : public content::DevToolsTarget {
explicit DevToolsTargetImpl(
scoped_refptr<content::DevToolsAgentHost> agent_host);
- virtual ~DevToolsTargetImpl();
+ ~DevToolsTargetImpl() override;
// content::DevToolsTarget overrides:
- virtual std::string GetId() const override;
- virtual std::string GetParentId() const override;
- virtual std::string GetType() const override;
- virtual std::string GetTitle() const override;
- virtual std::string GetDescription() const override;
- virtual GURL GetURL() const override;
- virtual GURL GetFaviconURL() const override;
- virtual base::TimeTicks GetLastActivityTime() const override;
- virtual scoped_refptr<content::DevToolsAgentHost>
- GetAgentHost() const override;
- virtual bool IsAttached() const override;
- virtual bool Activate() const override;
- virtual bool Close() const override;
+ std::string GetId() const override;
+ std::string GetParentId() const override;
+ std::string GetType() const override;
+ std::string GetTitle() const override;
+ std::string GetDescription() const override;
+ GURL GetURL() const override;
+ GURL GetFaviconURL() const override;
+ base::TimeTicks GetLastActivityTime() const override;
+ scoped_refptr<content::DevToolsAgentHost> GetAgentHost() const override;
+ bool IsAttached() const override;
+ bool Activate() const override;
+ bool Close() const override;
// Returns the WebContents associated with the target on NULL if there is
// not any.
« no previous file with comments | « chrome/browser/devtools/devtools_sanity_browsertest.cc ('k') | chrome/browser/devtools/devtools_target_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698