electron/brightray/browser/net_log.h

37 lines
801 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/file_path.h"
#include "base/files/scoped_file.h"
#include "net/log/net_log.h"
namespace net {
class URLRequestContext;
}
namespace brightray {
class NetLog : public net::NetLog,
public net::NetLog::ThreadSafeObserver {
public:
explicit NetLog(net::URLRequestContext* context);
virtual ~NetLog();
void OnAddEntry(const net::NetLog::Entry& entry) override;
private:
bool added_events_;
scoped_ptr<net::URLRequestContext> context_;
base::ScopedFILE log_file_;
DISALLOW_COPY_AND_ASSIGN(NetLog);
};
} // namespace brightray
#endif // BROWSER_NET_LOG_H_