Modernize C++11: Use override.
This commit is contained in:
parent
0cf7454d4b
commit
3e041b2c91
2 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ class DevToolsDelegate :
|
||||||
public devtools_http_handler::DevToolsHttpHandlerDelegate {
|
public devtools_http_handler::DevToolsHttpHandlerDelegate {
|
||||||
public:
|
public:
|
||||||
DevToolsDelegate();
|
DevToolsDelegate();
|
||||||
virtual ~DevToolsDelegate();
|
~DevToolsDelegate() override;
|
||||||
|
|
||||||
// devtools_http_handler::DevToolsHttpHandlerDelegate.
|
// devtools_http_handler::DevToolsHttpHandlerDelegate.
|
||||||
std::string GetDiscoveryPageHTML() override;
|
std::string GetDiscoveryPageHTML() override;
|
||||||
|
|
|
@ -114,7 +114,7 @@ class BundledDataSource : public content::URLDataSource {
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
virtual ~BundledDataSource() {}
|
~BundledDataSource() override {}
|
||||||
DISALLOW_COPY_AND_ASSIGN(BundledDataSource);
|
DISALLOW_COPY_AND_ASSIGN(BundledDataSource);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue