mirror of
https://github.com/electron/electron.git
synced 2026-01-27 16:28:23 -05:00
Modernize C++11: Use override.
This commit is contained in:
@@ -89,7 +89,7 @@ class DevToolsDelegate :
|
||||
public devtools_http_handler::DevToolsHttpHandlerDelegate {
|
||||
public:
|
||||
DevToolsDelegate();
|
||||
virtual ~DevToolsDelegate();
|
||||
~DevToolsDelegate() override;
|
||||
|
||||
// devtools_http_handler::DevToolsHttpHandlerDelegate.
|
||||
std::string GetDiscoveryPageHTML() override;
|
||||
|
||||
@@ -114,7 +114,7 @@ class BundledDataSource : public content::URLDataSource {
|
||||
}
|
||||
|
||||
private:
|
||||
virtual ~BundledDataSource() {}
|
||||
~BundledDataSource() override {}
|
||||
DISALLOW_COPY_AND_ASSIGN(BundledDataSource);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user