electron/brightray/browser/net_log.h

31 lines
675 B
C
Raw Normal View History

2015-06-05 14:54:38 +00:00
// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef BROWSER_NET_LOG_H_
#define BROWSER_NET_LOG_H_
#include "base/files/scoped_file.h"
#include "net/log/net_log.h"
2015-08-11 10:29:55 +00:00
#include "net/log/write_to_file_net_log_observer.h"
2015-06-05 14:54:38 +00:00
namespace brightray {
2015-08-11 10:29:55 +00:00
class NetLog : public net::NetLog {
2015-06-05 14:54:38 +00:00
public:
2015-08-11 10:29:55 +00:00
NetLog();
2015-06-06 09:03:07 +00:00
~NetLog() override;
2015-06-05 14:54:38 +00:00
2015-08-11 10:29:55 +00:00
void StartLogging(net::URLRequestContext* url_request_context);
2015-06-05 14:54:38 +00:00
private:
base::ScopedFILE log_file_;
2015-08-11 10:29:55 +00:00
net::WriteToFileNetLogObserver write_to_file_observer_;
2015-06-05 14:54:38 +00:00
DISALLOW_COPY_AND_ASSIGN(NetLog);
};
} // namespace brightray
#endif // BROWSER_NET_LOG_H_