| Index: net/ftp/ftp_network_layer.cc
|
| diff --git a/net/ftp/ftp_network_layer.cc b/net/ftp/ftp_network_layer.cc
|
| index 2c11fc7b5bac901f7cb534938d179dc3577b4e39..3167803c9586385d37c96d78122e3acc342bf8f6 100644
|
| --- a/net/ftp/ftp_network_layer.cc
|
| +++ b/net/ftp/ftp_network_layer.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "net/ftp/ftp_network_layer.h"
|
|
|
| +#include "base/logging.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "net/ftp/ftp_network_session.h"
|
| #include "net/ftp/ftp_network_transaction.h"
|
| @@ -14,6 +15,7 @@ namespace net {
|
| FtpNetworkLayer::FtpNetworkLayer(HostResolver* host_resolver)
|
| : session_(new FtpNetworkSession(host_resolver)),
|
| suspended_(false) {
|
| + DCHECK(host_resolver);
|
| }
|
|
|
| FtpNetworkLayer::~FtpNetworkLayer() {
|
|
|