| Index: net/url_request/url_request_ftp_job_unittest.cc
|
| diff --git a/net/url_request/url_request_ftp_job_unittest.cc b/net/url_request/url_request_ftp_job_unittest.cc
|
| index 629613dae810bfa7d277a232b7d03290afedfd82..5f41edc134e2aa4893076aef34f98d2d1ece95f9 100644
|
| --- a/net/url_request/url_request_ftp_job_unittest.cc
|
| +++ b/net/url_request/url_request_ftp_job_unittest.cc
|
| @@ -67,18 +67,15 @@ class SimpleProxyConfigService : public ProxyConfigService {
|
| config_.proxy_rules().ParseFromString("ftp=localhost");
|
| }
|
|
|
| - virtual void AddObserver(Observer* observer) override {
|
| - observer_ = observer;
|
| - }
|
| + void AddObserver(Observer* observer) override { observer_ = observer; }
|
|
|
| - virtual void RemoveObserver(Observer* observer) override {
|
| + void RemoveObserver(Observer* observer) override {
|
| if (observer_ == observer) {
|
| observer_ = NULL;
|
| }
|
| }
|
|
|
| - virtual ConfigAvailability GetLatestProxyConfig(
|
| - ProxyConfig* config) override {
|
| + ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) override {
|
| *config = config_;
|
| return CONFIG_VALID;
|
| }
|
| @@ -108,16 +105,14 @@ class TestURLRequestFtpJob : public URLRequestFtpJob {
|
| using URLRequestFtpJob::priority;
|
|
|
| protected:
|
| - virtual ~TestURLRequestFtpJob() {}
|
| + ~TestURLRequestFtpJob() override {}
|
| };
|
|
|
| class MockFtpTransactionFactory : public FtpTransactionFactory {
|
| public:
|
| - virtual FtpTransaction* CreateTransaction() override {
|
| - return NULL;
|
| - }
|
| + FtpTransaction* CreateTransaction() override { return NULL; }
|
|
|
| - virtual void Suspend(bool suspend) override {}
|
| + void Suspend(bool suspend) override {}
|
| };
|
|
|
| // Fixture for priority-related tests. Priority matters when there is
|
|
|